Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support RemoteWebDriver #353

Merged
merged 1 commit into from
Sep 16, 2020

Commits on Sep 16, 2020

  1. feat: support RemoteWebDriver

    Example usage:
    
    ```xml
    <plugin>
      <groupId>com.github.searls</groupId>
      <artifactId>jasmine-maven-plugin</artifactId>
      <version>${jasmine-maven-plugin.version}</version>
      <executions>
        <execution>
          <goals>
            <goal>test</goal>
          </goals>
        </execution>
      </executions>
      <configuration>
        <serverHostname>${accessibleHostname}</serverHostname>
        <webDriverClassName>org.openqa.selenium.remote.RemoteWebDriver</webDriverClassName>
        <webDriverCapabilities>
          <webDriverCapability>
            <name>browserName</name>
            <value>chrome</value>
          </webDriverCapability>
          <webDriverCapability>
            <name>goog:chromeOptions</name>
            <value implementation="org.openqa.selenium.chrome.ChromeOptions">
              <headless>true</headless>
            </value>
          </webDriverCapability>
        </webDriverCapabilities>
        <!-- If your remote server is not running at http://localhost:4444/wd/hub then you can use this parameter to configure the right location -->
        <!-- <remoteWebDriverUrl>http://localhost:4444/wd/hub</remoteWebDriverUrl> -->
      </configuration>
    </plugin>
    ```
    
    closes searls#234
    closes searls#235
    closes searls#349
    klieber committed Sep 16, 2020
    Configuration menu
    Copy the full SHA
    ddc8a43 View commit details
    Browse the repository at this point in the history