| Current Path : /var/www/html/dyna-hr/vendor/codeception/base/src/Codeception/Lib/Interfaces/ |
| Current File : /var/www/html/dyna-hr/vendor/codeception/base/src/Codeception/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
* @param $filename
*/
public function _saveScreenshot($filename);
}