webdriver-test无法使用

时间:2011-09-27 09:04:07

标签: phpunit yii webdriver selenium-webdriver

在虚拟机上(干净,新鲜的Ubuntu服务器11.04)我按照Creating Your First Yii Application中的描述创建了一个测试网站,现在我想使用webdriver-test创建一个简单的测试。

我在protected / tests / WebTestCase.php中设置了正确的TEST_BASE_URL并创建了protected / tests / functional / MySimpleTest.php

<?php
Yii::import( 'ext.webdriver-bindings.CWebDriverTestCase' );

class MySimpleTest extends CWebDriverTestCase {

    protected function setUp() {
        parent::setUp( '192.168.57.1', 4444, 'firefox' );
    }

    public function testMySite() {
        $this->get( TEST_BASE_URL );

        $qElem = $this->findElementBy( LocatorStrategy::linkText, 'Users' );
        $this->assertNotNull( $qElem, 'There is no "Users" link!' );

        $qElem->clickAndWait();

        $this->assertTrue( $this->isTextPresent( 'test1@example.com' ), 'The is no "test1@example.com" text on result page!' );
    }
}

运行它看起来像这样:

etam@ubuntu:/var/www/test/protected/tests$ phpunit functional/MySimpleDbTest.php
PHPUnit 3.5.15 by Sebastian Bergmann.

E

Time: 5 seconds, Memory: 5.25Mb

There was 1 error:

1) MySimpleTest::testMySite
PHPUnit_Framework_Exception: setBrowserUrl() needs to be called before start().

/opt/yii-1.1.8.r3324/framework/test/CWebTestCase.php:61
/var/www/test/protected/extensions/webdriver-bindings/CWebDriverTestCase.php:156

FAILURES!
Tests: 1, Assertions: 0, Errors: 1.

请注意,它抱怨来自PHPUnit_Extensions_SeleniumTestCase_Driver的setBrowserUrl(),它与CWebDriverTestCase中的setBrowserUrl()不同。

我试图找出发生了什么,但这对我来说太复杂了。看起来新旧selenium API存在问题,但我不确定。

我正在使用:

  • Ubuntu服务器11.04
  • yii 1.1.8.r3324
  • webdriver-test 1.1b
  • phpunit 3.5.15(修复如bugs.launchpad.net/ubuntu/+source/phpunit/+bug/701544中所述)

请帮忙!

1 个答案:

答案 0 :(得分:0)

您需要在parent :: setup()方法之后立即调用setBrowseUrl()方法,因为selenium需要此url来解析测试用例的相对路径。所以这样你可以调用open('full.url.com/someAction')或者只是打开('/ someAction'),两者都会转到同一页面。