-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from jhoblitt/feature/v0.2.3
Feature/v0.2.3
- Loading branch information
Showing
7 changed files
with
46 additions
and
106 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name 'jhoblitt-selenium' | ||
version '0.2.2' | ||
version '0.2.3' | ||
|
||
author 'Joshua Hoblitt <[email protected]>' | ||
license 'Apache' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,24 +2,6 @@ | |
# | ||
# This define should be considered private. | ||
# | ||
# Note that selenium::params && selnenium::install must be included in the | ||
# manifest before this define may be used. | ||
# | ||
# === Parameters | ||
# | ||
# Accepts no parameters. | ||
# | ||
# | ||
# === Examples | ||
# | ||
# selenium::config{ 'seleniumstandalone': } | ||
# | ||
# | ||
# === Authors | ||
# | ||
# Joshua Hoblitt <[email protected]> | ||
# | ||
# | ||
define selenium::config( | ||
$display = $selenium::params::display, | ||
$user = $selenium::params::user, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,7 @@ | ||
# == Class: selenium::hub | ||
# | ||
# === Parameters | ||
# | ||
# Note that by default `selenium::server` and `selenium::hub` will try to | ||
# listen on the same TCP port (`4444`) and only one of them will be able to | ||
# function. | ||
# | ||
# ```puppet | ||
# # defaults | ||
# class { 'selenium::hub': | ||
# options => '-role hub', | ||
# } | ||
# ``` | ||
# | ||
# #### `options` | ||
# | ||
# `String` defaults to: `-role hub` | ||
# | ||
# Options passed to Selenium Server Hub at startup. | ||
# | ||
# | ||
# === Authors | ||
# | ||
# Joshua Hoblitt <[email protected]> | ||
# Please refer to https://github.com/jhoblitt/puppet-selenium#seleniumhub for | ||
# parameter documentation. | ||
# | ||
# | ||
class selenium::hub( | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,7 @@ | ||
# == Class: selenium::node | ||
# | ||
# === Parameters | ||
# | ||
# ```puppet | ||
# # defaults | ||
# class { 'selenium::node': | ||
# display => ':0', | ||
# options => '-Dwebdriver.enable.native.events=1 -role node', | ||
# hub => 'http://localhost:4444/grid/register', | ||
# } | ||
# ``` | ||
# | ||
# #### `display` | ||
# | ||
# `String` defaults to: `:0` | ||
# | ||
# The name of the `X` display to render too. This is set as an environment | ||
# variable passed to Selenium Server | ||
# | ||
# #### `options` | ||
# | ||
# `String` defaults to: `-Dwebdriver.enable.native.events=1 -role node` | ||
# | ||
# Options passed to Selenium Server Node at startup. | ||
# | ||
# #### `hub` | ||
# | ||
# `String` defaults to: `http://localhost:4444/grid/register` | ||
# | ||
# The URL of the Selenium Server Hub to connect to. | ||
# | ||
# | ||
# === Authors | ||
# | ||
# Joshua Hoblitt <[email protected]> | ||
# Please refer to https://github.com/jhoblitt/puppet-selenium#seleniumnode for | ||
# parameter documentation. | ||
# | ||
# | ||
class selenium::node( | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,7 @@ | ||
# == Class: selenium::server | ||
# | ||
# === Parameters | ||
# | ||
# ```puppet | ||
# # defaults | ||
# class { 'selenium::server': | ||
# display => ':0', | ||
# options => '-Dwebdriver.enable.native.events=1', | ||
# } | ||
# ``` | ||
# | ||
# #### `display` | ||
# | ||
# `String` defaults to: `:0` | ||
# | ||
# The name of the `X` display to render too. This is set as an environment | ||
# variable passed to Selenium Server | ||
# | ||
# #### `options` | ||
# | ||
# `String` defaults to: `-Dwebdriver.enable.native.events=1` | ||
# | ||
# Options passed to Selenium Server at startup. | ||
# | ||
# | ||
# === Authors | ||
# | ||
# Joshua Hoblitt <[email protected]> | ||
# Please refer to https://github.com/jhoblitt/puppet-selenium#seleniumserver | ||
# for parameter documentation. | ||
# | ||
# | ||
class selenium::server( | ||
|