I need to save the HTML in a file somewhere so it can be opened in the browser.

有帮助吗?

解决方案

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

    $html = $this->getSession()->getDriver()->getContent();
    file_put_contents('/tmp/behat_page.html', $html);
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top