public function BrowserKitDriver::getContent in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php \Behat\Mink\Driver\BrowserKitDriver::getContent()
Returns last response content.
Return value
string
Throws
UnsupportedDriverActionException When operation not supported by the driver
DriverException When the operation cannot be done
Overrides CoreDriver::getContent
File
- vendor/
behat/ mink-browserkit-driver/ src/ BrowserKitDriver.php, line 314
Class
- BrowserKitDriver
- Symfony2 BrowserKit driver.
Namespace
Behat\Mink\DriverCode
public function getContent() {
return $this
->getResponse()
->getContent();
}