我对我的工作有点怀疑。让我,请解释我的工作。我的测试结构如下:
BeforeSuite 测试 aftersuites
这些是在不同的套房中,我不需要在套房之前和之后多次运行。但是"测试"应该在不同的浏览器中运行。所以它是一种系列并行(抱歉,如果它不是好词)的概念。 我想创建运行的单个testNG套件: 然后首先关注 在一台计算机上测试所有浏览器(即chrome,firefox)(尚未使用远程驱动程序)。 最后的余震只有一个司机。我这样工作:
<suite-file path="testforChrome"/>
<suite-file path="testforFirefox"/>
<suite-file path="testforIE"/>
<suite-file path="beforeSuite"/>
<suite-file path="AfterSuite"/>
</suite-files>
但我还没有运气。 有人有想法吗?