razielsd / webdriverlib
API for JSON Wire Protocol, support Selenium, Selendroid, Appium
Installs: 311 340
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^5.6 || ^7.0
README
About
WebDriverLib - simple usage api for JSON Wire Protocol such as Selenium WebDriver.
Example
//connect to Selenium
self::$driver = new WebDriver('localhost', 4444);
//set select field value
$driver->find('xpath=//select')->value(555);
//set input field value
$driver->find('xpath=//input')->value(555);