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

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/");
ISelenium selenium2 = new DefaultSelenium("localhost", 5556, "*iehta", "http://localhost/");
ISelenium selenium4 = new DefaultSelenium("localhost", 5557, "*iehta", "http://localhost/");


selenium1.Start();
selenium2.Start();
selenium3.Start();

Because when I run http://localhost:4444/console there are 3 Available Remote Controls but 0 Active Remote Controls even if I run code from up.

Code from ant which I do not understand 100%. Why is there parameter
<arg value="-parallel"/>?

<target name="run-demo-in-parallel" description="Run Selenium tests in parallel">
    <java classpathref="demo.classpath"
        classname="org.testng.TestNG"
        failonerror="true"

        >
      <sysproperty key="java.security.policy" file="${basedir}/lib/testng.policy"/>
      <sysproperty key="webSite" value="${webSite}" />
      <sysproperty key="seleniumHost" value="${seleniumHost}" />
      <sysproperty key="seleniumPort" value="${seleniumPort}" />
      <sysproperty key="browser" value="${browser}" />

      <arg value="-d" />
      <arg value="${basedir}/target/reports" />
      <arg value="-suitename" />
      <arg value="Selenium Grid Demo In Parallel" />
      <arg value="-parallel"/>
      <arg value="methods"/>
      <arg value="-threadcount"/>
      <arg value="10"/>
      <arg value="-testclass"/>
      <arg value="com.thoughtworks.selenium.grid.demo.WebTestForASingleBrowser"/>
    </java>
  </target>
share|improve this question

2 Answers

up vote 1 down vote accepted

Why is there parameter

<arg value="-parallel"/>?

This is for testng. This would run all the methods/classes/tests in parallel rather than sequentially. You can see more about this property here. You have registered 3 RCs and ideally you should see all 3 being used for execution. You can check the grid console link to see the utilization - http://localhost:4444/console where localhost is the IP on which hub is running and port is the portnumber on which hub is listening to.

EDIT: Change your code to point to selenium hub port rather than RC port. By default Hub port will be 4444. Also make sure you have started the RC nodes with environment as *iehta.

`ISelenium selenium1 = new DefaultSelenium("localhost", 4444, "*iehta",` "http://localhost/");
share|improve this answer
thx for answer. This is all true but under "Active Remote Control" there is no RC. Is this ok? – senzacionale Aug 2 '11 at 14:55
You should see RCs under "Active Remote Control" once you start your test. Your code had an issue. I have updated my answer. – A.J Aug 2 '11 at 15:14

What you are doing will work but will be slow and almost as bad as doing it in a truly serial way. This is because most of the calls in Selenium will block until completion. To really take advantage of the parallelisation offered by the Grid, you should multi-thread your code. Have one thread for each Selenium object.

share|improve this answer
ok i make now one thread for ech selenium object. but i do not think that is much faster or mabye i am wrong. how too see if is parallel execution? – senzacionale Aug 2 '11 at 4:11

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.