TestNG plugin is not present in Run configuration -


i going use testng in work not authorised me install testng plugin - http://beust.com/eclipse/ have download testng jar , import in eclipse script supporting testng package , annotation when go run script on run configuration testng plugin not found not able run script through testng.

please me.

first of delete testng you've downloaded , use eclipse marketplace such download. can find here: help->eclipse marketplace type testng search , install testng eclipse.

after need create such file testng.xml should consist of:

<suite name="suite" parallel="none"> <parameter name="properties" value="test.properties" /> <test name="put test name here">     <classes>          <class name="put class name here" />         <methods></methods>     </classes>  </test> 

after right taping @ testng.xml file able run test testng suite.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -