Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In our project we are using gradle to nuke the DB and also using gradle to run the selenium test cases in different suites. I am trying to run selenium test casses parallely. How to add task for that.

share|improve this question

1 Answer

Look into Galio/MBUnit or PNUnit for Paralleizing your TestFixtures.

Run the selenium RC jar file on a Remote Machine and give it the role of Hub.

Then run another Selenum RC jar file with the role of -Node and have it connect to the Hub.

Install the appropriate browsers on the machines that each Selenium Jar -Node is running on.

Look up Selenium Grid 2. It's essentially using the old Selenium RC server to control the sessions for your Selenium WebDrivers.

Setup your TestFixtures to create a IWebDriver RemoteWebDriver and pass in the IP address of the Hub. and at the top of the Test Fixture Class you can use [Parallelisable] and [TestFixture]

The Hub will handle the Browser sessions (which can actually run more than 10 browsers at the same time) given you know how to thread your selenium tests. (Which is why I recommend looking into Unit Testing Framework Galio/MBUnit and PNUnit.

Then you can use the Galio GUI which will recognise your Parallelising attributes on your TestFixtures and run them at the same time, which will trigger new RemoteWebDrivers to connect to your Hub which will trigger off the Browser Sessions on each of the Nodes.

There are no issues with Screenshots as they can still be acheived using the RemoteWebDriver, also any PageObjects (If you are using the PageObject design pattern) with Selenium WebDriver won't need to be changed because WebDriver is supported.

Doing some research into this, you could actually get many tests all running at the same time, while not only improving your develoment time and testing feedback time, it also stresses the system which you are testing under realistic conditions of hammering the service many times in a short duration using multiple browsers.

It wont be easy, but to get you started here are some things you might want to search into, because It's not something I can just write here as 'a solution' to your problem.

Selenium Grid 2. Selenium RC Server - Roles (-Hub, -Node) EventFiringWebDriver - This gives you the ability to wrap your actual WebDriver in another Driver Object which triggers events useful for logging information, such as onFindingElement, OnElementFound, OnException, OnNavigating. MBUnit/Galio Parallel Testing NUnit (2.6) [Test, TestCaseSource("Function")] Attribute functions. [SetUp] [TearDown] [TestFixture]

http://code.google.com/p/selenium/wiki/Grid2

http://www.seleniumwiki.com/software-testing/selenium-grid/installing-selenium-grid-with-mbunit-and-gallio/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.