razielsd/webdriverlib

API for JSON Wire Protocol, support Selenium, Selendroid, Appium

Maintainers

Package info

github.com/razielsd/webdriverlib

pkg:composer/razielsd/webdriverlib

Statistics

Installs: 355 383

Dependents: 1

Suggesters: 0

Stars: 3

Open Issues: 0

0.2.5 2017-02-14 13:47 UTC

This package is not auto-updated.

Last update: 2026-03-15 04:07:17 UTC


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);