Skip to content
Snippets Groups Projects

Issue #3253735: Backbone manual tree-shake

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
  • 640db538
    Issue #3251988 by vijaycs85, smccabe: Update return param of waitForText method · 640db538
    catch authored
@@ -123,7 +123,7 @@ public function waitForElementVisible($selector, $locator, $timeout = 10000) {
}
/**
* Waits for the specified text and returns its element when available.
* Waits for the specified text and returns TRUE when it is available.
*
* @param string $text
* The text to wait for.
@@ -131,7 +131,7 @@ public function waitForElementVisible($selector, $locator, $timeout = 10000) {
* (Optional) Timeout in milliseconds, defaults to 10000.
*
* @return bool
* TRUE if not found, FALSE if found.
* TRUE if found, FALSE if not found.
*/
public function waitForText($text, $timeout = 10000) {
return (bool) $this->waitForHelper($timeout, function (Element $page) use ($text) {
Loading