Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

selenium_grid (6) Versions 1.0.0

Installs/Configures Selenium-Grid

Policyfile
Berkshelf
Knife
cookbook 'selenium_grid', '= 1.0.0', :supermarket
cookbook 'selenium_grid', '= 1.0.0'
knife supermarket install selenium_grid
knife supermarket download selenium_grid
README
Dependencies
Changelog
Quality 100%

Selenium-Grid Cookbook

Cookbook Version
Build Status

Wraps selenium, browser, driver, and screenresolution cookbooks into one comprehensive cookbook.

Supports

  • Chrome
  • Firefox
  • HtmlUnit
  • Internet Explorer
  • Safari

Requirements

  • Java (not installed by this cookbook)
  • Chef 11.16+

Platforms

  • CentOS, RedHat
  • Mac OS X
  • Ubuntu
  • Windows

Cookbooks

  • windows
  • nssm - Required by Windows services only (e.g. Hub and HtmlUnit running in background)
  • macosx_autologin - Required by Mac OS X GUI services

Recipes

hub

Installs and configures a Selenium Hub as a service.

node

Installs and configures a Selenium Node as service on Linux and a GUI service on Mac OS X and Windows.

Attributes

  • node['selenium_grid']['username'] - Mac OS X and Windows. Default nil.
  • node['selenium_grid']['password'] - Mac OS X and Windows. Default nil.
  • node['selenium_grid']['domain'] - Windows only. Default nil.
  • node['selenium_grid']['display']['width'] - Screen resolution width. Linux and Windows only. Default 1024.
  • node['selenium_grid']['display']['height'] - Screen resolution height. Linux and Window only. Default 768.
  • node['selenium_grid']['display']['depth'] - Screen resolution depth. Linux only. Default 24.
  • node['selenium_grid']['display']['windows'] - Set Windows screen resolution. Windows only. Default true.
  • node['selenium_grid']['chrome']['max_instances'] - Installs Chrome and ChromeDriver, if > 0. Default 0.
  • node['selenium_grid']['chrome']['version'] - Version of browser installed, if nil. Default nil.
  • node['selenium_grid']['firefox']['max_instances'] - Installs Firefox, if > 0. Default 0.
  • node['selenium_grid']['firefox']['version'] - Version of browser installed, if nil. Default nil.
  • node['selenium_grid']['htmlunit']['max_instances'] - Activates HtmlUnit, if > 0. Default 0.
  • node['selenium_grid']['htmlunit']['version'] - Default nil.
  • node['selenium_grid']['ie']['max_instances'] - Installs IEDriver and configures IE, if > 0. Only one instance of IE is recommended. Windows only. Default 0.
  • node['selenium_grid']['ie']['version'] - Version of browser installed, if nil. Default nil.
  • node['selenium_grid']['safari']['max_instances'] - Installs SafariDriver, if > 0. Mac OS X only. Default 0.
  • node['selenium_grid']['safari']['version'] - Version of browser installed, if nil. Default nil.

Examples

Selenium Node with Chrome and Firefox capabilities

node.set['selenium_grid']['chrome']['max_instances'] = 5
node.set['selenium_grid']['firefox']['max_instances'] = 5

include_recipe 'selenium::node'

Selenium Node with IE capability and custom version

v = ie_version.split('.')
major_version = v[0]
minor_version = v[1]

node.set['selenium_grid']['ie']['max_instances'] = 1
node.set['selenium_grid']['ie']['version'] = "#{major_version}.#{minor_version}"

include_recipe 'selenium::node'

Getting Help

Contributing

Please refer to CONTRIBUTING.

License

MIT - see the accompanying LICENSE file for details.

Changelog

1.0.0

  • Initial release

Foodcritic Metric
            

1.0.0 passed this metric