Skip to content

Commit

Permalink
Bump version to 91.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
giggio committed Jun 2, 2021
1 parent 436fbe6 commit eb15a6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/chromedriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function getPortFromArgs(args) {
}
process.env.PATH = path.join(__dirname, 'chromedriver') + path.delimiter + process.env.PATH;
exports.path = process.platform === 'win32' ? path.join(__dirname, 'chromedriver', 'chromedriver.exe') : path.join(__dirname, 'chromedriver', 'chromedriver');
exports.version = '90.0.4430.24';
exports.version = '91.0.4472.19';
exports.start = function (args, returnPromise) {
let command = exports.path;
if (!fs.existsSync(command)) {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chromedriver",
"version": "90.0.1",
"version": "91.0.0",
"keywords": [
"chromedriver",
"selenium"
Expand Down

3 comments on commit eb15a6c

@BKu-1
Copy link

@BKu-1 BKu-1 commented on eb15a6c Jun 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @giggio ,
thank you for your update.
It would be really great, if you could update chromedriver 91 to 91.0.4472.101, as the previous version 91.0.4472.19 has a major issue that occurs in test automation.

https://www.npmjs.com/package/chromedriver/v/91.0.0

ChromeDriver 91.0.4472.101
Supports Chrome version 91
Resolved issue 1205107: Unable to get attribute value for fields on the web application.

Thank you a lot.
BKu-1

@giggio
Copy link
Owner Author

@giggio giggio commented on eb15a6c Jun 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BKu-1 done.

@BKu-1
Copy link

@BKu-1 BKu-1 commented on eb15a6c Jun 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@giggio Great! Thank you for your quick action!

Please sign in to comment.