Home
last modified time | relevance | path

Searched refs:driver (Results 1 – 25 of 91) sorted by path

1234

/plugin/adfs/phpsaml/
H A DREADME.md98 * `mcrypt`. Install that library and its php driver if you're going to handle
100 * `gettext`. Install that library and its php driver. It handles translations.
101 * `curl`. Install that library and its php driver if you plan to use the IdP Metadata parser.
/plugin/authgooglesheets/
H A Dcomposer.lock548 "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
550 "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
/plugin/bible/bible_douayRheims/
H A D3_Kings.txt797 …he king of Israel, between the lungs and the stomach. But he said to the driver of his chariot: Tu…
H A D4_Kings.txt30 …2:12. And Eliseus saw him, and cried: My father, my father, the chariot of Israel, and the driver
H A DJob.txt992 39:7. He scorneth the multitude of the city, he heareth not the cry of the driver.
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md47 - Option to specify type of new window (window or tab) when using `$driver->switchTo()->newWindow()`.
50 - Actually start ChromeDriver in W3C mode if it is supported by the browser driver. Until now, when it was initialized using `ChromeDriver::start()`, it has always been unintentionally started in OSS mode.
55 - Throw `DriverServerDiedException` on local driver process terminating unexpectedly and provide full details of original exception to improve debugging.
58 - Deprecate `RemoteWebDriver::newWindow()` in favor of `$driver->switchTo()->newWindow()`.
102 - Rename environment variable used to pass path to ChromeDriver executable from `webdriver.chrome.driver` to `WEBDRIVER_CHROME_DRIVER`. However the old one also still works to keep backward compatibility
161 - Added `getCapabilities()` method of `RemoteWebDriver`, to retrieve actual capabilities acknowledged by the remote driver on startup.
H A DREADME.md55 This could be Selenium standalone server, but for local development, you can send them directly to so-called "browser driver" like Chromedriver or Geckodriver.
123 $driver = RemoteWebDriver::create($serverUrl, DesiredCapabilities::chrome());
125 $driver = RemoteWebDriver::create($serverUrl, DesiredCapabilities::firefox());
127 $driver = RemoteWebDriver::create($serverUrl, DesiredCapabilities::microsoftEdge());
150 $driver = RemoteWebDriver::create($serverUrl, $desiredCapabilities);
164 $driver->get('https://en.wikipedia.org/wiki/Selenium_(software)');
167 $driver->findElement(WebDriverBy::id('searchInput')) // find search input element
172 $historyButton = $driver->findElement(
182 $driver->quit();
/plugin/combo/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDevToolsDriver.php22 private $driver; variable in Facebook\\WebDriver\\Chrome\\ChromeDevToolsDriver
24 public function __construct(RemoteWebDriver $driver) argument
26 $this->driver = $driver;
40 return $this->driver->executeCustomCommand(
/plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/
H A DWebDriverActions.php23 protected $driver; variable in Facebook\\WebDriver\\Interactions\\WebDriverActions
29 * @param WebDriverHasInputDevices $driver
31 public function __construct(WebDriverHasInputDevices $driver) argument
33 $this->driver = $driver;
34 $this->keyboard = $driver->getKeyboard();
35 $this->mouse = $driver->getMouse();
H A DWebDriverTouchActions.php29 public function __construct(WebDriver $driver) argument
31 parent::__construct($driver);
32 $this->touchScreen = $driver->getTouch();
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteExecuteMethod.php10 private $driver; variable in Facebook\\WebDriver\\Remote\\RemoteExecuteMethod
13 * @param RemoteWebDriver $driver
15 public function __construct(RemoteWebDriver $driver) argument
17 $this->driver = $driver;
27 return $this->driver->execute($command_name, $parameters);
H A DRemoteKeyboard.php17 private $driver; variable in Facebook\\WebDriver\\Remote\\RemoteKeyboard
24 public function __construct(RemoteExecuteMethod $executor, WebDriver $driver, $isW3cCompliant = false) argument
27 $this->driver = $driver;
39 $activeElement = $this->driver->switchTo()->activeElement();
H A DRemoteTargetLocator.php18 protected $driver; variable in Facebook\\WebDriver\\Remote\\RemoteTargetLocator
22 public function __construct(RemoteExecuteMethod $executor, RemoteWebDriver $driver, $isW3cCompliant = false) argument
25 $this->driver = $driver;
37 return $this->driver;
75 return $this->driver;
81 * @return RemoteWebDriver This driver focused on the parent frame
87 return $this->driver;
104 return $this->driver;
108 * Creates a new browser window and switches the focus for future commands of this driver t
[all...]
/plugin/combo/vendor/php-webdriver/webdriver/lib/Support/Events/
H A DEventFiringWebDriver.php22 protected $driver; variable in Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver
30 * @param WebDriver $driver
33 public function __construct(WebDriver $driver, WebDriverDispatcher $dispatcher = null) argument
39 $this->driver = $driver;
55 return $this->driver;
68 $this->driver->get($url);
89 foreach ($this->driver->findElements($by) as $element) {
112 $element = $this->newElement($this->driver->findElement($by));
131 if (!$this->driver instanceo
[all...]
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverDispatcher.php16 protected $driver; variable in Facebook\\WebDriver\\WebDriverDispatcher
19 * this is needed so that EventFiringWebElement can pass the driver to the
22 * @param EventFiringWebDriver $driver
25 public function setDefaultDriver(EventFiringWebDriver $driver) argument
27 $this->driver = $driver;
37 return $this->driver;
H A DWebDriverEventListener.php13 * @param EventFiringWebDriver $driver
15 public function beforeNavigateTo($url, EventFiringWebDriver $driver); argument
19 * @param EventFiringWebDriver $driver
21 public function afterNavigateTo($url, EventFiringWebDriver $driver); argument
24 * @param EventFiringWebDriver $driver
26 public function beforeNavigateBack(EventFiringWebDriver $driver); argument
29 * @param EventFiringWebDriver $driver
31 public function afterNavigateBack(EventFiringWebDriver $driver); argument
34 * @param EventFiringWebDriver $driver
36 public function beforeNavigateForward(EventFiringWebDriver $driver); argument
41 afterNavigateForward(EventFiringWebDriver $driver) global() argument
48 beforeFindBy(WebDriverBy $by, $element, EventFiringWebDriver $driver) global() argument
55 afterFindBy(WebDriverBy $by, $element, EventFiringWebDriver $driver) global() argument
61 beforeScript($script, EventFiringWebDriver $driver) global() argument
67 afterScript($script, EventFiringWebDriver $driver) global() argument
93 onException(WebDriverException $exception, EventFiringWebDriver $driver = null) global() argument
[all...]
H A DWebDriverExpectedCondition.php46 function (WebDriver $driver) use ($title) {
47 return $title === $driver->getTitle();
61 function (WebDriver $driver) use ($title) {
62 return mb_strpos($driver->getTitle(), $title) !== false;
76 function (WebDriver $driver) use ($titleRegexp) {
77 return (bool) preg_match($titleRegexp, $driver->getTitle());
91 function (WebDriver $driver) use ($url) {
92 return $url === $driver->getCurrentURL();
106 function (WebDriver $driver) use ($url) {
107 return mb_strpos($driver
[all...]
H A DWebDriverWait.php18 protected $driver; variable in Facebook\\WebDriver\\WebDriverWait
28 public function __construct(WebDriver $driver, $timeout_in_second = null, $interval_in_millisecond = null) argument
30 $this->driver = $driver;
36 * Calls the function provided with the driver as an argument until the return value is not falsey.
54 $ret_val = call_user_func($func_or_ec->getApply(), $this->driver);
56 $ret_val = call_user_func($func_or_ec, $this->driver);
/plugin/database2/
H A Ddatabase2.php72 private $driver; variable in Database2
469 $this->driver = strtolower( trim( $this->db->getAttribute(
473 if ( strpos( $this->driver, 'mysql' ) !== false )
494 $this->db = $this->driver = null;
3850 else if ( $this->driver == 'mssql' )
3862 $sqldef = ( $this->driver == 'sqlite' ) ? 'real'
4300 if ( $this->driver == 'sqlite' )
/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto20.php66 $driver = $pdo->getAttribute(PDO::ATTR_DRIVER_NAME); variable
68 switch($driver) {
77 echo "Error: unsupported driver: " . $driver . "\n";
99 switch($driver) {
187 switch($driver) {
218 switch($driver) {
263 switch($driver) {
319 switch($driver) {
366 switch($driver) {
386 switch($driver) {
[all …]
H A Dmigrateto21.php67 $driver = $pdo->getAttribute(PDO::ATTR_DRIVER_NAME); variable
69 switch($driver) {
78 echo "Error: unsupported driver: " . $driver . "\n";
106 switch($driver) {
143 switch($driver) {
H A Dmigrateto30.php66 $driver = $pdo->getAttribute(PDO::ATTR_DRIVER_NAME); variable
68 switch($driver) {
77 echo "Error: unsupported driver: " . $driver . "\n";
92 switch($driver) {
138 switch($driver) {
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1 … then emit all event. an inner/nested event might be\n // the driver of this\n …
H A Deditor.worker.js.map1 … then emit all event. an inner/nested event might be\n // the driver of this\n …
H A Djson.worker.js.map1 … then emit all event. an inner/nested event might be\n // the driver of this\n …

1234