-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 #234 closes #235 closes #349
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters