문제

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