_generated\AcceptanceTesterActions::executeInSelenium PHP Method

executeInSelenium() public method

Low-level API method. If Codeception commands are not enough, this allows you to use Selenium WebDriver methods directly: php $I->executeInSelenium(function(\Facebook\WebDriver\Remote\RemoteWebDriver $webdriver) { $webdriver->get('http://google.com'); }); This runs in the context of the RemoteWebDriver class. Try not to use this command on a regular basis. If Codeception lacks a feature you need, please implement it and submit a patch.
See also: Codeception\Module\WebDriver::executeInSelenium()
public executeInSelenium ( callable $function )
$function callable
    public function executeInSelenium($function)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('executeInSelenium', func_get_args()));
    }
AcceptanceTesterActions