开发者

Simple PHP Selenium test doesn't work

开发者 https://www.devze.com 2023-01-18 00:52 出处:网络
I have the following Selenium test in PHP: <?php require_once(\'PHPUnit/Extensions/SeleniumTestCase.php\');

I have the following Selenium test in PHP:

<?php

require_once('PHPUnit/Extensions/SeleniumTestCase.php');

class Example extends PHPUnit_Extensions_SeleniumTestCase
{
  protected function setUp()
  {
    $this->setBrowser("*chrome");
    $this->setBrowserUrl("http://change-this-to-the-site-you-are-testing/");
  }

  public function testMyTestCase()
  {
    $this->open("/frontend_dev.php");
    try {
        $this->assertTrue($this->isTextPresent("Local Coupons"));
    } catch (PHPUnit_Frame开发者_Go百科work_AssertionFailedError $e) {
        array_push($this->verificationErrors, $e->toString());
    }
  }
}

When I try to run it (by running "php filename.php") I get the error:

PHP Fatal error:  Class 'PHPUnit_Framework_TestCase' not found in /usr/share/php/PHPUnit/Extensions/SeleniumTestCase.php on line 60

Which makes sense because the class isn't defined anywhere, but why not? I installed PHPUnit. It seems a little weird that a class called PHPUnit_Framework_TestCase wouldn't be included with PHPUnit. Any ideas?


You should read the docs for PHPUnit for the command line test runner. You can also just run 'phpunit --help' from the command line. I believe you'll find that you need to instead run something like

phpunit path/to/filename.php
0

精彩评论

暂无评论...
验证码 换一张
取 消