File tree 5 files changed +8
-103
lines changed
5 files changed +8
-103
lines changed Original file line number Diff line number Diff line change 2
2
#
3
3
# This define should be considered private.
4
4
#
5
- # Note that selenium::params && selnenium::install must be included in the
6
- # manifest before this define may be used.
7
- #
8
- # === Parameters
9
- #
10
- # Accepts no parameters.
11
- #
12
- #
13
- # === Examples
14
- #
15
- # selenium::config{ 'seleniumstandalone': }
16
- #
17
- #
18
- # === Authors
19
- #
20
- # Joshua Hoblitt <[email protected] >
21
- #
22
- #
23
5
define selenium::config (
24
6
$display = $selenium::params::display,
25
7
$user = $selenium::params::user,
Original file line number Diff line number Diff line change 1
1
# == Class: selenium::hub
2
2
#
3
- # === Parameters
4
- #
5
- # Note that by default `selenium::server` and `selenium::hub` will try to
6
- # listen on the same TCP port (`4444`) and only one of them will be able to
7
- # function.
8
- #
9
- # ```puppet
10
- # # defaults
11
- # class { 'selenium::hub':
12
- # options => '-role hub',
13
- # }
14
- # ```
15
- #
16
- # #### `options`
17
- #
18
- # `String` defaults to: `-role hub`
19
- #
20
- # Options passed to Selenium Server Hub at startup.
21
- #
22
- #
23
- # === Authors
24
- #
25
- # Joshua Hoblitt <[email protected] >
3
+ # Please refer to https://github.com/jhoblitt/puppet-selenium#seleniumhub for
4
+ # parameter documentation.
26
5
#
27
6
#
28
7
class selenium::hub (
Original file line number Diff line number Diff line change 1
1
# == Class: selenium
2
2
#
3
- # Please refer to https://github.com/jhoblitt/puppet-selenium#usage for
3
+ # Please refer to https://github.com/jhoblitt/puppet-selenium#selenium for
4
4
# parameter documentation.
5
5
#
6
+ #
6
7
class selenium (
7
8
$user = $selenium::params::user,
8
9
$group = $selenium::params::group,
Original file line number Diff line number Diff line change 1
1
# == Class: selenium::node
2
2
#
3
- # === Parameters
4
- #
5
- # ```puppet
6
- # # defaults
7
- # class { 'selenium::node':
8
- # display => ':0',
9
- # options => '-Dwebdriver.enable.native.events=1 -role node',
10
- # hub => 'http://localhost:4444/grid/register',
11
- # }
12
- # ```
13
- #
14
- # #### `display`
15
- #
16
- # `String` defaults to: `:0`
17
- #
18
- # The name of the `X` display to render too. This is set as an environment
19
- # variable passed to Selenium Server
20
- #
21
- # #### `options`
22
- #
23
- # `String` defaults to: `-Dwebdriver.enable.native.events=1 -role node`
24
- #
25
- # Options passed to Selenium Server Node at startup.
26
- #
27
- # #### `hub`
28
- #
29
- # `String` defaults to: `http://localhost:4444/grid/register`
30
- #
31
- # The URL of the Selenium Server Hub to connect to.
32
- #
33
- #
34
- # === Authors
35
- #
36
- # Joshua Hoblitt <[email protected] >
3
+ # Please refer to https://github.com/jhoblitt/puppet-selenium#seleniumnode for
4
+ # parameter documentation.
37
5
#
38
6
#
39
7
class selenium::node (
Original file line number Diff line number Diff line change 1
1
# == Class: selenium::server
2
2
#
3
- # === Parameters
4
- #
5
- # ```puppet
6
- # # defaults
7
- # class { 'selenium::server':
8
- # display => ':0',
9
- # options => '-Dwebdriver.enable.native.events=1',
10
- # }
11
- # ```
12
- #
13
- # #### `display`
14
- #
15
- # `String` defaults to: `:0`
16
- #
17
- # The name of the `X` display to render too. This is set as an environment
18
- # variable passed to Selenium Server
19
- #
20
- # #### `options`
21
- #
22
- # `String` defaults to: `-Dwebdriver.enable.native.events=1`
23
- #
24
- # Options passed to Selenium Server at startup.
25
- #
26
- #
27
- # === Authors
28
- #
29
- # Joshua Hoblitt <[email protected] >
3
+ # Please refer to https://github.com/jhoblitt/puppet-selenium#seleniumserver
4
+ # for parameter documentation.
30
5
#
31
6
#
32
7
class selenium::server (
You can’t perform that action at this time.
0 commit comments