June 2017
Intermediate to advanced
256 pages
5h 38m
English
Let's add a couple of desired capabilities to our test now. One of the important concepts of test automation is to start with a clean slate; hence, we will add fullReset capabilities. Also, the Appium server waits for 60 secs for the new command by default, and then it quits the session because of inactivity; so we will tweak it a little to wait for 120 seconds now:
Let's add these capabilities in the HomePageSteps class file under the iLaunchQuikrApp() method:
@When("^I launch Quikr app$")public void iLaunchQuikrApp() throws Throwable { DesiredCapabilities ...Read now
Unlock full access