Reputation: 95
My Hybrid android app is built with angularjs
library with lots of Asynchronous
calls all over. How can I integrate Appium with Protractor
, so that I can check for complete page loadings including asynchronous calls and other data bindings. My app is developed and ported as APK
and not browsed in a browser. Am able to execute my selenium scripts but asynchronous calls is the place where I have stuck.
Please help me.
Upvotes: 2
Views: 771
Reputation: 6962
As of now Protractor doesn't officially support appium configurations. However there is a help file that is available in Protractor docs. All you need to do is update your conf.js file to include the appium configurations and remember to start your appium server before you run the test script. To your question, you need to have below points ready -
Here's the link to it - Protractor-Appium Setup
Upvotes: 1