0

我正在尝试在提交空白表单的情况下运行测试,等待 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);
    }

}

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

谢谢

4

2 回答 2

1

该声明

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

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

这应该对你有用 - 注意额外的行$this->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);
}
于 2012-11-19T21:24:29.013 回答
-1

我找到了两个很好的教程,它们解释了需要的是一个用于 PHP 交互的 Selenium API 的包装器。

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
        );

    }

}
于 2012-08-24T12:15:30.397 回答