xframium / xframium-java

xFramium - Rapid unified test case development
http://www.xframium.org
GNU General Public License v3.0
12 stars 18 forks source link

Fix for issue #52 & issue #54 #55

Closed shivajibr closed 7 years ago

shivajibr commented 7 years ago

1) Restful service with JSON response throwing Classcastexception #52 - Added changes to WebServiceClientUtil.java. Below changes added:

JSONArray value = (JSONArray)ctx.read( param.path ) contextMap.put( param.name, value.toJSONString() );

2) Error on running a test on Android/IOS if app is not pre-installed on the device #54 - Removed else statements in IOSDriverFactory and AndroidDriverFactory. This is to fix errors on running scripts without app being installed on mobile device