Skip to content

Commit ffb1070

Browse files
author
Rahul Raut
committed
Updated version to v4.0.0
Updated other npm dependencies. Updated README and CHANGELOG. Added webdriver update scripts task in package.json
1 parent 4a97325 commit ffb1070

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [4.0.0]
6+
- Upgraded Protractor version to '^5'
7+
- Updated README for selenium jar location
8+
- Updated dependencies
9+
510
## [2.4.0]
611
- Upgraded Protractor version to '3.3.0'
712

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# MAINTAINER NEEDED (See [Issue 125](https://github.com/mllrsohn/gulp-protractor/issues/125))
2-
31
# gulp-protractor [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][depstat-image]][depstat-url]
42

53
> Run your [angular protractor](https://github.com/angular/protractor) tests with [gulp](https://github.com/wearefractal/gulp)
@@ -37,7 +35,7 @@ To do that, simply point to the selenium jar in the protractor config file (you
3735

3836
```javascript
3937
// The file path to the selenium server jar ()
40-
seleniumServerJar: './node_modules/protractor/selenium/selenium-server-standalone-2.45.0.jar',
38+
seleniumServerJar: './node_modules/protractor/node_modules/webdriver-manager/selenium/selenium-server-standalone-3.2.0.jar',
4139
// seleniumAddress: 'http://localhost:4444/wd/hub',
4240
```
4341

example/protractor.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// https://raw.github.com/angular/protractor/master/example/conf.js
33
exports.config = {
44
// The address of a running selenium server.
5-
seleniumServerJar: './node_modules/protractor/selenium/selenium-server-standalone-2.41.0.jar', // Make use you check the version in the folder
5+
seleniumServerJar: './node_modules/protractor/node_modules/webdriver-manager/selenium/selenium-server-standalone-2.41.0.jar', // Make use you check the version in the folder
66
//seleniumAddress: 'http://localhost:4444/wd/hub',
77
// Capabilities to be passed to the webdriver instance.
88
capabilities: {

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
{
1818
"name": "Robbin Habermehl",
1919
"email": "robbin@habermehl.net"
20+
},
21+
{
22+
"name": "Rahul Raut",
23+
"email": "rahul@raut.me",
24+
"url": "https://github.com/rahulmr"
2025
}
2126
],
2227
"main": "./index.js",
@@ -25,6 +30,7 @@
2530
"url": "git://github.com/mllrsohn/gulp-protractor.git"
2631
},
2732
"scripts": {
33+
"wd:update": "webdriver-manager update",
2834
"test": "mocha"
2935
},
3036
"dependencies": {

0 commit comments

Comments
 (0)