- ZAHIR HUSSAIN
- Posts : 1
Join date : 2015-05-24
Run Test cases with different browser on same system
Mon Jun 08, 2015 10:40 pm
Hello All,
I have set of test cases the first set of TC's should run in IE browser after next set of TC's should run in firefox in same system.
Both browsers installed in the same system , How I can achieve above run.
Please let me know.
Regards,
-Zahir Hussain
I have set of test cases the first set of TC's should run in IE browser after next set of TC's should run in firefox in same system.
Both browsers installed in the same system , How I can achieve above run.
Please let me know.
Regards,
-Zahir Hussain
- vgandra
- Posts : 1
Join date : 2015-06-21
Age : 33
Location : Hyderabad
Run Test cases with different browser on same system
Wed Jun 24, 2015 1:32 am
Hi Zahir,
You can run rest cases with different browsers on same system using TestNG.
Modify the your script so that it will run using testng.xml file. You can get the all information from TestNG website or some other online tutorials
Now group your test cases using TestNG annotations and create two XML files let say testngff.xml and testngie.xml.
Follow the below steps:
Step1:
open workspace folder->create new folder with name as "lib"->paste all jars used in project classes including selenium-server-standalone jar, testng jar, and etc.
Step 2:
open cmd->change directory to workspace folder of above project-> then execute below command "set classpath=path of workspace/bin;path of workspace/lib/*;" Now run below command
"java org.testng.TestNG testng.xml" - Test cases mentioned in the testng.xml will executed
Step 3:
Now create two testng.xml file one for IE and another for FF. open two command prompts and repeat STEP 2.
That's it. If you have any problem send me reply
~Regards,
Vijay
You can run rest cases with different browsers on same system using TestNG.
Modify the your script so that it will run using testng.xml file. You can get the all information from TestNG website or some other online tutorials
Now group your test cases using TestNG annotations and create two XML files let say testngff.xml and testngie.xml.
Follow the below steps:
Step1:
open workspace folder->create new folder with name as "lib"->paste all jars used in project classes including selenium-server-standalone jar, testng jar, and etc.
Step 2:
open cmd->change directory to workspace folder of above project-> then execute below command "set classpath=path of workspace/bin;path of workspace/lib/*;" Now run below command
"java org.testng.TestNG testng.xml" - Test cases mentioned in the testng.xml will executed
Step 3:
Now create two testng.xml file one for IE and another for FF. open two command prompts and repeat STEP 2.
That's it. If you have any problem send me reply
~Regards,
Vijay
Permissions in this forum:
You cannot reply to topics in this forum