_generated\TestGuyActions::executeInGuzzle PHP Method

executeInGuzzle() public method

Low-level API method. If Codeception commands are not enough, use Guzzle HTTP Client methods directly Example: php executeInGuzzle(function (\GuzzleHttp\Client $client) { $client->get('/get', ['query' => ['foo' => 'bar']]); }); ?> It is not recommended to use this command on a regular basis. If Codeception lacks important Guzzle Client methods, implement them and submit patches.
See also: Codeception\Module\PhpBrowser::executeInGuzzle()
public executeInGuzzle ( callable $function )
$function callable
    public function executeInGuzzle($function)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('executeInGuzzle', func_get_args()));
    }
TestGuyActions