_generated\AcceptanceTesterActions::makeScreenshot PHP Method

makeScreenshot() public method

Takes a screenshot of the current window and saves it to tests/_output/debug. php amOnPage('/user/edit'); $I->makeScreenshot('edit_page'); saved to: tests/_output/debug/edit_page.png ?>
See also: Codeception\Module\WebDriver::makeScreenshot()
public makeScreenshot ( $name )
$name
    public function makeScreenshot($name)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('makeScreenshot', func_get_args()));
    }
AcceptanceTesterActions