javascript - Appium API in Nightwatch Test -
is there way use appium commands setcontext within nightwatch tests?
i trying automate e2e tests ios devices. able run test , switch webview elements visible, struggling click not working on ios.
i tried solutions set cursor: pointer
or adding onclick=" int tag
, none of them worked.
i found below solution don't know how use appium commands inside nightwatch test.
https://github.com/appium/appium/blob/master/docs/en/advanced-concepts/hybrid.md
does know how switch context within nightwatch test?
or how work around click event?
ps. click event works inputs , buttons, use divs ui-sref in our app , doesn't work on ipads , iphones.
here settings nightwatch-conf.js
ios" : { "selenium_start_process": false, "selenium_port" : 4723, "selenium_host" : "127.0.0.1", "silent": true, "desiredcapabilities" : { // "browsername" : "safari", "platformname" : "ios", "platformversion" : "10.2", "devicename" : "ipad air 2", "javascriptenabled" : true, "newcommandtimeout": 30000, "startiwdp": true, "autowebview" : true, } }
Comments
Post a Comment