如何编写Behat步骤以捕获Goutte驱动程序的屏幕截图?

时间:2014-03-25 14:10:29

标签: php screenshot behat goutte

我需要将HTML保存在某个文件中,以便可以在浏览器中打开。

1 个答案:

答案 0 :(得分:2)

/**
 * @Then /^show me the page$/
 */
public function show_me_the_page() {

    $html = $this->getSession()->getDriver()->getContent();
    file_put_contents('/tmp/behat_page.html', $html);
}