AppiumDriver Basics
Get introduced to WebDriver basics and the methods available in it.
We'll cover the following...
About WebDriver
WebDriver
is an interface that acts as a bridge between commands (finding, clicking, typing keys, scrolling, etc.) and the device/browser. The communication happens using JSON-wire protocol over HTTP.
About AppiumDriver
AppiumDriver
is a generic implementation of the interface WebDriver
. In addition, we have specialized implementations like AndroidDriver
, IOSDriver
, etc., providing device type-specific commands.
The following table shows the methods that ...