Tagged Questions

9
votes
3answers
3k views

Has anyone found a way to run C# Selenium RC tests in parallel?

Has anyone found a way to run Selenium RC / Selenium Grid tests, written in C# in parallel? I've currently got a sizable test suite written using Selenium RC's C# driver. Running the entire test ...
3
votes
1answer
526 views

Is there any way to delete an HttpOnly cookie from C# Selenium tests?

I have a set of C# Selenium tests that need to delete a cookie that has the HttpOnly flag set. Unfortunately the DefaultSelenium.GetCookie() and DefaultSelenium.DeleteCookie() commands aren't able to ...
3
votes
1answer
260 views

How do i use more than one browser in Nunit/Selenium GRID/C# Setup

I have a Selenium GRID Setup with the various browsers on it (IE6, 7, 8, FF 3.5.6) written in C# and individually they work fine. I also have a set of Selenium Tests setup and they also work fine with ...
2
votes
2answers
275 views

selenium grid parallel execution

this is from selenium grid. How to write java/C# code to make parallel execution. Is this enough? ISelenium selenium1 = new DefaultSelenium("localhost", 5555, "*iehta", "http://localhost/"); ...
2
votes
2answers
2k views

Selenium Grid with parallel testing using C#/NUnit

I've got several unit tests written with NUnit that are calling selenium commands. I've got 2 win2k3 server boxes setup, one is running selenium grid hub along with 2 selenium rc's. The other box is ...
1
vote
0answers
100 views

WebDriver Grid with HtmlUnit on Node pegs the Node CPU

I am usign C#, with Gallio/mbUnit to write a very simple set of tests that open a browser, navigate to google.com, type 'seleniumhq' in the search box, and click the search button. I create my host ...
1
vote
1answer
92 views

How to pass webSite parameter to SeleniumGrid instances

I am using C#, MBunit and selenium Grid and I need to run the same scripts for 3 different environments Dev, QA and PROD. I launch 3 different remote controls in Selenium grid, but how can I pass ...
1
vote
1answer
485 views

Migrate selenium Nunit tests to MBunit for parallel execution

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)] ...
1
vote
2answers
639 views

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 ...
0
votes
0answers
104 views

Not seeing updated pagesource when using htmlunit with remotebrowser in c# after ajax call

I have a problem when using RemoteBrowser, htmlunit and running a test that checks the validation message in a modal windows which only shows in the pagesource after the AJAX call is made post click ...
0
votes
1answer
496 views

Run Chrome or IE with selenium grid2

DesiredCapabilities capability = DesiredCapabilities.Chrome(); IWebDriver wd = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), capability); wd.Navigate().GoToUrl("http://localhost/"); ...
0
votes
1answer
721 views

selenium grid2 howto run 5 browsers in paralel

DesiredCapabilities capability = DesiredCapabilities.Firefox(); IWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), capability); ISelenium ...
0
votes
0answers
297 views

MbUnit NUnit Selenium Grid not working properly

For some reason on both MbUnit and Nunit tests when I try to run a simple test just to see if I can navigate somewhere in a web browser via the testing unit and into selenium grid, my program gets to ...