E2E\WebDriverShortcuts::notSee PHP Method

notSee() public method

Wait and validate an element to be invisible.
public notSee ( $selector )
$selector string The element's CSS selector.
    public function notSee($selector)
    {
        $this->waitUntil(WebDriverExpectedCondition::invisibilityOfElementLocated(WebDriverBy::cssSelector($selector)));
        return $this;
    }