selenium-grid

Running tests on multiple browsers with selenium grid and junit

I am trying to set up automated selenium testing but don't know how to run tests in multiple browsers. Based on reading stuff online I have selenium grid up and running with multiple browsers and it successfully executes my tests. I am trying to figure out how to setup my junit tests so that it runs all the browsers one after another or...

Selenium Grid. Why HUB wrote "false" after registration Selenium RC?

Hello. I have question. Steps: 1. Run hub ("ant launch-hub") 2. Run registration of RC ("ant -Dport=5557 launch-remote-control") 3. Chek console of hub Question: In the console says: - RemoteControlProxy localhost:5557#false. why does it say "false". I dont understand it.![alt text][1] But Selenium RC displayed in the browser in "Avai...

Selenium grid tests with TestNG - multiple tests on multiple machines

Hi, we have a running selenium grid setup. Before the grid, when I started the tests with the suite parameter parallel="tests" it would start several browser instances on the same machine. Now that I've set up the grid, it only starts one test per machine. How can I change it, so that more tests per machine are started? ...

Trouble using Selenium Grid/RC with Python.

I have built a couple of test cases as stand alone python classes using Selenium. I can run each of them using Selenium RC. Ultimately I want to use Selenium Grid to run all of the test cases. How would I do this? Do I need some kind of wrapper to hold of of the python test cases together? How do I get Selenium Grid to run a collectio...

Migrating to Selenium 2

Selenium 2/Webdriver has all sorts of great benefits but there is one big drawback: it doesn't support running on a grid out of the box. Has anybody switched from using a SE1 grid to using SE2 serially and been satisfied with the results? I'm wondering if the benefits of SE2 make up for the expected loss of speed due to running serially...

Selenium RCs Taking a Long Time to Load

Sometimes the Selenium RCs that I start on my test server take a long time to fully start up and begin listening on their designated port (upwards of 15 min.) It is a powerful system and they usually start up with a couple of minutes max, so I don't think it is a system resource problem. Has anyone experienced this or know why this may...

Why doesn't Selenium return from this internal HTTPS URL?

Can someone please tell me why Selenium can't return from opening this internal HTTPS URL? https://red1cert.red-usa.com:37443/index.php3 After a call to selenium.open("https://red1cert.red-usa.com:37443/index.php3"), Selenium hangs and after a very long while, it terminates with server error. Help please. ...

Parallel testing with Selenium Grid (using C# unit tests)

Following AutomatedTesters response: Is there any way to run parrallel tests with C# code, without using class libraries other than the Selenium Core? I have the following setup: Selenium Grid Hub: 192.168.0.1 Selenium RC 1 : 192.168.0.2 Selenium RC 2 : 192.168.0.3 Both remote controls are running *firefox. If only 1 of the remote c...

Migrate selenium Nunit tests to MBunit for parallel execution

Hi, I am trying to migrate my existing selenium tests with Nunit to MBunit so that I can run the tests in parallel using selenium grid. I've added the attributes [assembly: DegreeOfParallelism(8)] [assembly: Parallelizable(TestScope.All)] to assemblyinfo.cs and added references to Gallio.dll and MBUnit.dll to the C# project. The pro...