Lines Matching defs:WebDriver

3 namespace Facebook\WebDriver\Remote;
5 use Facebook\WebDriver\Interactions\WebDriverActions;
6 use Facebook\WebDriver\JavaScriptExecutor;
7 use Facebook\WebDriver\WebDriver;
8 use Facebook\WebDriver\WebDriverBy;
9 use Facebook\WebDriver\WebDriverCapabilities;
10 use Facebook\WebDriver\WebDriverCommandExecutor;
11 use Facebook\WebDriver\WebDriverElement;
12 use Facebook\WebDriver\WebDriverHasInputDevices;
13 use Facebook\WebDriver\WebDriverNavigation;
14 use Facebook\WebDriver\WebDriverOptions;
15 use Facebook\WebDriver\WebDriverWait;
17 class RemoteWebDriver implements WebDriver, JavaScriptExecutor, WebDriverHasInputDevices
57 * @param bool $isW3cCompliant false to use the legacy JsonWire protocol, true for the W3C WebDriver spec
77 * @param string $selenium_server_url The url of the remote Selenium WebDriver server
79 * @param int|null $connection_timeout_in_ms Set timeout for the connect phase to remote Selenium WebDriver server
80 * @param int|null $request_timeout_in_ms Set the maximum time of a request to remote Selenium WebDriver server
81 * @param string|null $http_proxy The proxy to tunnel requests to the remote Selenium WebDriver through
82 * @param int|null $http_proxy_port The proxy port to tunnel requests to the remote Selenium WebDriver through
122 // This has changed with the W3C WebDriver spec, but is the only way how to pass these
142 * @param string $selenium_server_url The url of the remote Selenium WebDriver server
144 * @param int|null $connection_timeout_in_ms Set timeout for the connect phase to remote Selenium WebDriver server
145 * @param int|null $request_timeout_in_ms Set the maximum time of a request to remote Selenium WebDriver server
146 * @param bool $isW3cCompliant True to use W3C WebDriver (default), false to use the legacy JsonWire protocol
190 * @return WebDriver The current instance.
393 * Construct a new WebDriverWait by the current WebDriver instance.
398 * WebDriverExpectedCondition::titleIs('WebDriver Page')
558 * @param string $selenium_server_url The url of the remote Selenium WebDriver server