1

我正在尝试设置我的测试自动化引擎。不幸的是,当我运行测试并失败时,没有截屏。我在日志中找不到任何错误,告诉我出了什么问题。

我正在使用:Magento Community 1.7.0.0、Selenium-server 2.24.1、Firefox 13.0.1、PHPUnit 3.6.11、Magento 测试自动化框架(最新版本)。Ubuntu 12.04

我的问题是:1.如何诱导问题出在哪里?2. 有没有人在那个firefox和selenium版本的截图上成功了?

4

1 回答 1

0

我写了没有magento taf的简单测试,它必须失败:

class WebTest extends PHPUnit_Extensions_SeleniumTestCase
{
    protected $captureScreenshotOnFailure = TRUE;
    protected $screenshotPath = '/home/lpp2/Pulpit/report/';
    protected $screenshotUrl = '/home/lpp2/Pulpit/report/';

  protected function setUp()
  {
    $this->setBrowser("*chrome");
    $this->setBrowserUrl("http://www.google.pl/");
  }

  public function testMyTestCase()
  {
    $this->open("http://www.google.pl/");
    $this->click("id=gbi4t");
    $this->waitForPageToLoad("30000");
    $this->type("id=Email", "user.name");
    $this->type("id=Passwd", "pass");
    $this->click("id=signIn");
    $this->waitForPageToLoad("30000");
    $this->assertEquals("Google", $this->getTitle());
  }
}
?>

我的 phpunit.xml:

<phpunit>
  <testsuites>
    <testsuite name="Google">
      <file>google.php</file>
    </testsuite>
  </testsuites>
 <logging>
        <log type="coverage-html" target="./report/coverage/" charset="UTF-8"
         yui="true" highlight="false"
         lowUpperBound="35" highLowerBound="70"/>
        <log type="plain" target="./report/logfile.txt"/>
        <log type="junit" target="./report/logfile.xml" logIncompleteSkipped="false"/>
    </logging>
</phpunit>

得到格栅截图。所以问题出在magento taf上。有些东西是禁用的。我在 .../magento_taf/lib/Mage/Selenium/TestCase.php 树行中找到了评论:

protected $captureScreenshotOnFailure = TRUE;
protected $screenshotPath = SELENIUM_TESTS_SCREENSHOTDIR;
protected $screenshotUrl = SELENIUM_TESTS_SCREENSHOTDIR;

取消注释->仍然无法正常工作!

编辑:好的,我已经从 github 下载了最新版本,现在它可以工作了。

于 2012-07-06T07:30:09.360 回答