Before I get into it, I\'m a newbie with selenium and so on. I have looked up all the answers to this issue and still haven\'t been able to fix the problem. My %claspath% an
The simplest way to execute your testng.xml is as follows :
From Project Directory, through CLI provide the following classpath:
C:\Users\keating99\workspace\FdimTests>set classpath=C:\Users\keating99\workspace\FdimTests\bin;C:\Users\keating99\workspace\FdimTests\lib\*;
Now, execute testng.xml as follows :
C:\Users\keating99\workspace\FdimTests>java org.testng.TestNG testng.xml
Observe the Testcase gets executed.