当命令提示符下运行selenium webdriver代码时,“无法创建任务或键入testng”错误

时间:2016-09-21 05:32:25

标签: selenium selenium-webdriver ant

当我在cmd中执行build.xml时,它显示的错误如“无法创建任务或键入testng”。

我已经搜索了有关我的问题的所有StackOverflow答案,但我无法纠正。下面是我的build.xml代码。

<target name="run" depends="compile">
<testng classpath="${test.classpath}:${test.dest}" suitename="suite">
<xmlfileset dir="${ws.home}" includes="TestNG.xml"/>
</testng>
</target>

以下行是taskdef

<taskdef resource="testngtasks" classpath="${lib}/testng-6.9.9.jar"/>

1 个答案:

答案 0 :(得分:0)

我已经纠正了这个问题。将下面的行添加到现有的行中。

<taskdef name="testng" classpath="${test.classpath}"
    classname="org.testng.TestNGAntTask" />
        <taskdef resource="testngtasks" classpath="${lib}/testng-6.9.9.jar"/>