代码之家  ›  专栏  ›  技术社区  ›  txwikinger

phpunit中有没有一种方法可以将数据库扩展和selenium扩展一起使用?

  •  2
  • txwikinger  · 技术社区  · 15 年前

    基本上,我想运行selenium测试,允许在每个selenium测试之前将数据库设置为define状态。我该怎么做?

    2 回复  |  直到 15 年前
        1
  •  0
  •   martinvium    15 年前

    Transaction rollback 是保持数据库一致性的一种方法。

    然后调用url到被测项目(和测试数据库)的映射,例如:

    $this->open('http://testing.example.org/system/under/test.php');
    
        2
  •  -1
  •   txwikinger    15 年前

    推荐文章