Home
last modified time | relevance | path

Searched refs:driver (Results 1 – 25 of 91) sorted by last modified time

1234

/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs7755 if(l7) d.l += 36; // Level 7: 32 byte "Language driver name", 4 byte reserved
/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/
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 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 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/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/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/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/elasticsearch/
H A Ddocker-compose.yml24 driver: bridge
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md133 (e.g. using Laravel with issue https://github.com/babenkoivan/scout-elasticsearch-driver/issues/297)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Drelease-notes.asciidoc230 https://github.com/babenkoivan/scout-elasticsearch-driver/issues/297[297])
/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/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/tablelayout/
H A Dyarn.lock767 websocket-driver ">=0.5.1"
2465 websocket-driver@>=0.5.1:
2467 …resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d9…
/plugin/passpolicy/
H A D10k-common-passwords.txt285 driver
H A Dwords.txt1035 driver
/plugin/strata/driver/
H A Ddriver.php18 * Whether the driver should generate debug output.
33 * Create a new database driver.
35 * @param debug boolean whether the created driver should generate debug output.
137 * This implementation looks for a file called 'setup-@driver@.sql' and executes all SQL statements in that file.
138 * Here, '@driver@' represents the database driver, such as 'sqlite'.
145 // determine driver
146 list($driver, $connection) = explode(':', $this->_dsn, 2);
147 if ($this->_debug) msg(sprintf($this->util->getLang('driver_setup_start'), hsc($driver)));
150 $sqlfile = DOKU_PLUGIN . "strata/sql/setup-$driver
[all...]

1234