running multiple test case in Selenium at the same time
I created 2 test suites with Selen开发者_C百科ium IDE and I would like to run those test suites at the same time. Just like firing threads at the same time. Is it possible without entering programming ?
P.S : I couldn't open 2 selenium IDE in Firefox.
Thanks.
Altug.
No it's not possible. Selenium IDE takes over the firefox control. And this is similar to 2 users clicking into same window.
The rule is 1 Firefox = 1 Selenium IDE
For parallel run you can setup Selenium grid. But it's more complicated solution than Selenium IDE.
It is possible, you have to run multiple profiles of the Firefox browser. You can do it by command
firefox -p Profile_Name -no-remote
make use of profile manager if you need:
firefox -profilemanager -no-remote
You can run as many profiles simultaneously you want... or your memory can handle. For each profile you have to install Selenium addons separatedly.
You will have to use Selenium Grid
精彩评论