-
Bug
-
Resolution: Done
-
Critical
-
drone_1.1.0.CR2
-
None
When user tries to use Selenium Grid together with Drone, e.g.:
@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@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);
}
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.
- blocks
-
ARQ-1048 RemoteWebDriver ignores old configuration properties
-
- Closed
-