Appium Interview Questions For Freshers

36. What is command to start appium from command prompt? Answer : “node appium” command from node_modules folder of appium will start appium server from command prompt. View start appium from command prompt example. 37. Is it possible to start and stop appium server programmatically? Answer : Yes we can start appium server programmatically too. I have … Read more

Appium Automation Interview Questions

31. : Which method is used to perform scroll down to text in appium. Answer : You can use scrollTo() method to scroll till text. View scroll down to text example. 32. : Is it possible to perform multi-touch action in appium test? Answer : Yes, We can perform multi-touch action action in appium automation … Read more

Mobile Automation Testing Interview Questions And Answers

26. : Can you tell me usage of findElements() method? Answer : We can use findElements() method to get the list of elements from page. Example : Supposing there are 5 buttons on page with same class name. In this case, We can use findElements() method and provide reference of class name in xpath(Example : … Read more

Latest Interview Questions For Android App Automation

21. : Which android version is supported by appium? Answer : Appium support Android 17+ API level versions only. You need to use selendroid if you have older version of android API level. View MORE DETAILS. 22. : How to configure appium project in eclipse? Answer : Appium project configuration steps are given on THIS PAGE. 23. … Read more