| Current Path : /home/rtorresani/www/vendor/codeception/lib-web/src/Lib/Interfaces/ |
| Current File : //home/rtorresani/www/vendor/codeception/lib-web/src/Lib/Interfaces/ScreenshotSaver.php |
<?php
namespace Codeception\Lib\Interfaces;
interface ScreenshotSaver
{
/**
* Saves screenshot of current page to a file
*
* ```php
* $this->getModule('{{MODULE_NAME}}')->_saveScreenshot(codecept_output_dir().'screenshot_1.png');
* ```
* @api
*/
public function _saveScreenshot(string $filename);
}