[arquillian-issues] [JBoss JIRA] (ARQ-1047) RemoteAddress nor Remote property does not trigger remote webdriver

Karel Piwko (JIRA) jira-events at lists.jboss.org
Tue Jul 24 16:44:06 EDT 2012


Karel Piwko created ARQ-1047:
--------------------------------

             Summary: RemoteAddress nor Remote property does not trigger remote webdriver
                 Key: ARQ-1047
                 URL: https://issues.jboss.org/browse/ARQ-1047
             Project: Arquillian
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: Extension - Drone
    Affects Versions: drone_1.1.0.CR2
            Reporter: Karel Piwko
            Assignee: Karel Piwko
            Priority: Critical
             Fix For: drone_1.2.0.next


When user tries to use Selenium Grid together with Drone, e.g.:

{code:java}
@Test
    public void simpleWebdriverTest(@Drone WebDriver webdriver) {
        webdriver.get(contextPath.toString());

        webdriver.findElement(By.id("name")).sendKeys("Samuel");
        webdriver.findElement(By.id("email")).sendKeys("samuel at vimes.dw");
        webdriver.findElement(By.id("phoneNumber")).sendKeys("1234567890");
        webdriver.findElement(By.id("register")).submit();

        // FIXME with Graphene, you can wait for a request
        Assert.assertTrue(true);
    }
{code}

it is not possible to trigger RemoteWebDriver builder via:

-Darquillian.webdriver.remote.address=xyz nor 
-Darquillian.webdriver.remote=true

User can use only RemoteReusable via
 -Darquillian.webdriver.remote.reusable=true, which is not correct behavior and prevents easy switch between local browser and Selenium Grid.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the arquillian-issues mailing list