_generated\AcceptanceTesterActions::sendPOST PHP Method

sendPOST() public method

Sends a POST request to given uri. Parameters and files (as array of filenames) can be provided.
See also: Codeception\Module\REST::sendPOST()
public sendPOST ( $url, array | JsonSerializable $params = null, array $files = null )
$url
$params array | JsonSerializable
$files array
    public function sendPOST($url, $params = null, $files = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('sendPOST', func_get_args()));
    }
AcceptanceTesterActions