_generated\WebGuyActions::canSeeInPopup PHP Method

canSeeInPopup() public method

Checks that the active JavaScript popup, as created by window.alert|window.confirm|window.prompt, contains the given string.
See also: Codeception\Module\WebDriver::seeInPopup()
public canSeeInPopup ( $text )
$text Conditional Assertion: Test won't be stopped on fail
    public function canSeeInPopup($text)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInPopup', func_get_args()));
    }
WebGuyActions