Selenium2 phpunit提交表单等待页面加载

时间:2012-08-24 08:25:45

标签: phpunit selenium-webdriver

我正在尝试运行一个提交空白表单的测试,等待10秒钟以确保页面已重新加载,然后检查错误消息是否正在显示。

我正在使用Selenium2,我以

开头
java -jar /usr/local/bin/selenium-server-standalone-2.25.0.jar

我有一些测试可以确保字段存在,例如

public function testEmailFieldIsPresentById()
{
$element = $this->byCssSelector('#email');
$this->assertEquals(1, count($element));
}

我根据我读过的不同文章尝试过不同的函数调用但是都没有。

这是我到目前为止两次尝试等待注释的内容。

<?php

class LoginFormSubmitTest extends PHPUnit_Extensions_Selenium2TestCase
{

    protected function setUp()
    {
        $this->setBrowser('firefox');
        $this->setBrowserUrl('http://localhost/login');
    }

    public function testWithAllBlankFields()
    {
        // Submit the form
        $this->byId('recording-form-login')->submit();
        // Wait 10 seconds
        //$this->waitForPageToLoad(10000);
        //$this->timeouts()->implicitWait(10000);
    }

}

任何人都可以向我指出一些关于此问题的好文档建议一种解决方法吗?

由于

2 个答案:

答案 0 :(得分:1)

声明

$this->setBrowserUrl('http://localhost/login');

实际上并没有打开网页。 setBrowserUrl ==设置测试的 base URL。

这应该对您有用 - 请注意额外的行 $ this-&gt; url('http:// localhost / login');

protected function setUp()
{
    $this->setBrowser('firefox');
    $this->setBrowserUrl('http://localhost/');
}

public function testWithAllBlankFields()
{
    $this->url('http://localhost/login');
    // Submit the form
    $this->byId('recording-form-login')->submit();
    // Wait 10 seconds
    //$this->waitForPageToLoad(10000);
    //$this->timeouts()->implicitWait(10000);
}

答案 1 :(得分:-1)

我找到了两个很好的教程,解释了所需要的是Selenium API for PHP与之交互的包装器。

http://testigniter.blogspot.co.uk/2012/01/running-selenium-2-webdriver-using.html http://edvanbeinum.com/using-selenium-2-phpunit-to-automate-browser-testing

https://github.com/facebook/php-webdriver下载包装后,我的代码现在如下所示,并在tearDown函数中捕获失败的屏幕截图

<?php

// Include the Facebook PHP Webdriver init file
require_once '../php-webdriver/__init__.php';

class loginFormSubmitTest extends PHPUnit_Framework_TestCase {

    /**
    * @var WebDriverSession
    */
    protected $_session;

    public function setUp()
    {
        parent::setUp();
        $web_driver = new WebDriver();
        $this->_session = $web_driver->session();
    }

    public function tearDown()
    {

        // Get the status of the test
        $status = $this->getStatus();

        // Check if the status has an error or a failure
        if ($status == PHPUnit_Runner_BaseTestRunner::STATUS_ERROR || $status == PHPUnit_Runner_BaseTestRunner::STATUS_FAILURE) {
            // Take a screenshot
            $image_data = base64_decode($this->_session->screenshot());

            file_put_contents(date('Y-m-d-H-i-s') . '.png', $image_data);
        }

        $this->_session->close();
        unset($this->_session);
        parent::tearDown();
    }

    public function test_submit_form_with_all_blank_fields()
    {

        $this->_session->open('http://localhost/login');

        $this->_session->element(
            'id',
            'recording_form_login_submit'
        )->click();

        $email_label_span_text = $this->_session->element('css selector', '#recording-form-login label[for="email"] span')->text();

        $this->assertSame(
            'Required',
            $email_label_span_text
        );

    }

}