Lines Matching refs:in

9 - Unsafe use of `static::` when accessing private property in `DesiredCapabilities`.
10 - PHP 8.1 deprecations in the `Cookie` class.
14 - Add `@return` and `@param` type annotations to Cookie class to avoid deprecations in PHP 8.1.
18 - `RemoteWebElement::getDomProperty()` method to read JavaScript properties of an element (like the value of `innerHTML` etc.) in W3C mode.
29 - `RemoteWebElement::getLocationOnScreenOnceScrolledIntoView()` was missing polyfill implementation for W3C mode and not working in eg. Safari.
33 - `FirefoxOptions` class to simplify passing Firefox capabilities. Usage is covered [in our wiki](https://github.com/php-webdriver/php-webdriver/wiki/Firefox#firefoxoptions).
46 - Support for sending Chrome DevTools Protocol commands (see details in [wiki](https://github.com/php-webdriver/php-webdriver/wiki/Chrome#chrome-devtools-protocol-cdp)).
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.
52 - Clicking a block element inside `<a>` element in Firefox (workaround for GeckoDriver bug [1374283](https://bugzilla.mozilla.org/show_bug.cgi?id=1374283)).
58 - Deprecate `RemoteWebDriver::newWindow()` in favor of `$driver->switchTo()->newWindow()`.
59 - Don't escape slashes in CURL exception message to improve readability.
69 - Make `alertIsPresent()` condition working in W3C mode.
70 - `RemoteWebDriver::create()` cannot be used without providing the second parameter (which is in fact optional).
71 - `ChromeDriver::start()` starts in inconsistent state mixing W3C/OSS mode.
72 - Modifier keys are not released when sending NULL key in GeckoDriver (workaround for GeckoDriver bug [1494661](https://bugzilla.mozilla.org/show_bug.cgi?id=1494661)).
73 - Do not set unnecessary `binary` value of `goog:chromeOptions` while keep the object in proper data type required by ChromeDriver.
77 - Reimplement element `equals()` method to be working in W3C mode.
79 - Disable JSON viewer in Firefox to let JSON response be rendered as-is.
87 - Accept array as possible input to `sendKeys()` method. (Unintentional BC break in 1.8.0.)
88 - Use relative offset when moving mouse pointer in W3C WebDriver mode.
103 - If subdirectories in a path to screenshot destination does not exists (using `takeScreenshot()` or `takeElementScreenshot()` methods), they are automatically created.
122 - Stop sending null values in Cookie object, which is against the protocol and may cause request to remote ends to fail.
126 - Add workaround for Chromedriver bug [2943](https://bugs.chromium.org/p/chromedriver/issues/detail?id=2943) which breaks the protocol in Chromedriver 75.
151 - Cookies retrieved using `getCookieNamed()` and `getCookies()` methods of `WebDriverOptions` are now encapsulated in `Cookie` object instead of an plain array. The object implements `ArrayAccess` interface to provide backward compatibility.
152 - `ext-zip` is now specified as required dependency in composer.json (but the extension was already required by the code, though).
154 - Deprecate `textToBePresentInElementValue` expected condition in favor of `elementValueContains`.
168 - `elementTextIs` - text in element exactly equals given text
169 - `elementTextContains` (as an alias for `textToBePresentInElement`) - text in element contains given text
170 - `elementTextMatches` - text in element matches regular expression
178 - Clarified meaning of selenium server URL variable in methods of `RemoteWebDriver` class.
180 - Deprecated `WebDriverExpectedCondition::textToBePresentInElement()` in favor of `elementTextContains()`.
185 - XPath escaping in `select*()` and `deselect*()` methods of `WebDriverSelect`.
191 - Fixed incompatibility with Appium, caused by redundant params present in requests to Selenium server.
194 - Fixed FirefoxProfile to support installation of extensions with custom namespace prefix in their manifest file.
203 - Fixed strict standards error in `ChromeDriver`.
205 - Fixed retrieving temporary path name in `FirefoxDriver` when `open_basedir` restriction is in effect.