Как использовать testng.xml

#xml #selenium

#xml #selenium

Вопрос:

Привет, я новичок в selenium, теперь я хочу запустить свой набор тестов, используя selenium rc и eclipse Ide, которые я использую ant при выполнении, за это время я получил ошибку в testNG.xml . так что, пожалуйста, подскажите мне, как использовать testng.xml и дайте мне один пример testng.xml

Это мой Build.xml

 <property name="lib.dir"   value="/softwares/lib"/>
<property name="src.dir" value="/softwares/src" />
  

 <target name="run_testNG" description="Run TestNG">
    <testng classpathref="compile.classpath" haltOnfailure="false">
        <xmlfileset dir="/softwares/cruisecontrol-bin-2.8.3/run_test/" includes="testng.xml" />
    </testng>
</target>
<target name="start-server">
    <java jar="/softwares/selenium/selenium-server-standalone-2.0b2.jar" fork="true" spawn="true">
        <arg line="-timeout 30"/>
        <jvmarg value="-Dhttp.proxyHost=proxy.corporate.com"/>
        <jvmarg value="-Dhttp.proxyPort=3128"/>
    </java>
</target>
<target name="stop-server">
    <get taskname="selenium-shutdown"
        src="http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer"
        dest="result.txt" ignoreerrors="true" />
    <echo taskname="selenium-shutdown" message="DGF Errors during shutdown are expected" />
</target>
<taskdef resource="testngtasks" classpath="/softwares/selenium/selenium-2.0b2/libs/testng-5.14.1.jar" />
  

===========================

Это мой testng.xml

===================

Мы получаем следующие ошибки:

 Buildfile: build.xml
prepare:
compile:
run_test:
  [waitfor] Wait for proxy server launch
start-server:
run_testNG:
   [testng] [TestNG] [ERROR] 
   [testng] Cannot find class in classpath: com.example.tests
   [testng] The tests failed.
stop-server:
[selenium-shutdown] Getting: http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer
[selenium-shutdown] To: /softwares/cruisecontrol-bin-2.8.3/run_test/result.txt
[selenium-shutdown] DGF Errors during shutdown are expected
BUILD SUCCESSFUL
  

Пожалуйста, помогите мне ….. мы получаем сообщение об ошибке «Не удается найти класс в classpath»

Ответ №1:

Убедитесь, что путь к классам, с помощью которого вы запускаете TestNG, содержит ваши классы.