grunt webdriver selenium server
npm install grunt-wd-server

> grunt webdriver selenium server
> Download selenium jar/webdrives and start selenium server.
~0.4.0If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
``shell`
npm install grunt-wd-server --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-wd-server');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
start_wd_server: {
options: {
// Task-specific options go here.
}
},
});
`$3
#### options.selenium.version
Type:
String
Default value: 2.44Selenium major version
#### options.selenium.serverOptions
Type:
Object
Default value: empty#### options.selenium.systemProperties
Type:
Object
Default value: empty#### options.chrome.version
Type:
String
Default value: '2.14'chrome webdrive major version
#### options.ie.version
Type:
String
Default value: '2.44'ie webdriver major version
#### options.downloadLocation
Type:
String
Default value: 'dl'location for download selenium and webdrivers to
$3
#### Default Options
In this example, the default options are used to do something with whatever. So if the
testing file has the content Testing and the 123 file had the content 1 2 3, the generated result would be Testing, 1 2 3.`js
grunt.initConfig({
start_wd_server: {
options: {}
},
});
`#### Custom Options
In this example, custom options are used to do something else with whatever else. So if the
testing file has the content Testing and the 123 file had the content 1 2 3, the generated result in this case would be Testing: 1 2 3 !!!`js
grunt.initConfig({
start_wd_server: {
options: {
selenium: {
version: '2.43'
},
chrome: {
version: '2.13'
}
}
},
});
``same usage to "start_wd_server"