Lowercase boolean
This commit is contained in:
@@ -473,9 +473,9 @@ class MinkContext extends RawMinkContext implements TranslatedContextInterface
|
|||||||
*/
|
*/
|
||||||
public function saveScreenshot($filename = null, $filepath = null)
|
public function saveScreenshot($filename = null, $filepath = null)
|
||||||
{
|
{
|
||||||
// Under Cygwin, uniqid with more_entropy must be set to TRUE.
|
// Under Cygwin, uniqid with more_entropy must be set to true.
|
||||||
// No effect in other environments.
|
// No effect in other environments.
|
||||||
$filename = $filename ?: sprintf('%s_%s_%s.%s', $this->getMinkParameter('browser_name'), date('c'), uniqid('', TRUE), 'png');
|
$filename = $filename ?: sprintf('%s_%s_%s.%s', $this->getMinkParameter('browser_name'), date('c'), uniqid('', true), 'png');
|
||||||
$filepath = $filepath ? $filepath : ini_get('upload_tmp_dir') ? ini_get('upload_tmp_dir') : sys_get_temp_dir();
|
$filepath = $filepath ? $filepath : ini_get('upload_tmp_dir') ? ini_get('upload_tmp_dir') : sys_get_temp_dir();
|
||||||
file_put_contents($filepath . '/' . $filename, $this->getSession()->getDriver()->getScreenshot());
|
file_put_contents($filepath . '/' . $filename, $this->getSession()->getDriver()->getScreenshot());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user