Вопрос

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