E2E\WebDriverShortcuts::see PHP Method

see() public method

Wait and validate an element to be visible.
public see ( $selector )
$selector
    public function see($selector)
    {
        $this->waitUntil(WebDriverExpectedCondition::visibilityOfElementLocated(WebDriverBy::cssSelector($selector)));
        return $this;
    }