razielsd/webdriverlib

JSON Wire协议的API,支持Selenium、Selendroid、Appium

0.2.5 2017-02-14 13:47 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:58:32 UTC


README

关于

WebDriverLib - JSON Wire Protocol(如Selenium WebDriver)的简单用法API。

示例

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