1.

What Are The Basic Commands That I Can Use In The Selenium Protocol?

Answer»

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 webview-based app's pages by using their ids or class names.
  • Raise events on located elements like Click().
  • TYPE INSIDE textboxes.
  • 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 webview. If your app uses more webviews, you can switch the context to the webview you desire. If your webview has frames or iframes inside, you can change context to one of them.
  • Detect alert boxes and dismiss or accept them.

Google's Selenium provides a collection of commands to automate your app. With those commands you can basically do the following:



Discussion

No Comment Found