_generated\TestGuyActions::canSeeInSource PHP Method

canSeeInSource() public method

Checks that the current page contains the given string in its raw source code. php seeInSource('

Green eggs & ham

');
See also: Codeception\Lib\InnerBrowser::seeInSource()
public canSeeInSource ( $raw )
$raw Conditional Assertion: Test won't be stopped on fail
    public function canSeeInSource($raw)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInSource', func_get_args()));
    }
TestGuyActions