_generated\AcceptanceTesterActions::pauseExecution PHP Method

pauseExecution() public method

Pauses test execution in debug mode. To proceed test press "ENTER" in console. This method is useful while writing tests, since it allows you to inspect the current page in the middle of a test case.
See also: Codeception\Module\WebDriver::pauseExecution()
public pauseExecution ( )
    public function pauseExecution()
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('pauseExecution', func_get_args()));
    }
AcceptanceTesterActions