Google News
logo
Appium - Interview Questions
What are the basic commands that I can use in the SELENIUM protocol?
Google’s SELENIUM provides a collection of commands to automate your app. With those commands you can basically do the following:

* Locate web elements in your web view-based app’s pages by using their ids or class names.
* Raise events on located elements like Click().
* Type inside text boxes.
* Get or set located element’s attributes.
* Execute some Javascript code.
* Change the context in order to test the native part of your app or the web view. If your app uses more web views, you can switch the context to the web view you desire. If your web view has frames or iframes inside, you
* can change the context to one of them
* Detect alert boxes and dismiss or accept them. Be careful about this functionality, I experienced some problems.
Advertisement