-
-
Notifications
You must be signed in to change notification settings - Fork 769
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade selenium-webdriver to latest
- Loading branch information
Showing
16 changed files
with
58 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@seleniumhq/selenium-ide", | ||
"version": "4.0.0-alpha.45", | ||
"version": "4.0.0-alpha.46", | ||
"private": true, | ||
"description": "Selenium IDE electron app", | ||
"author": "Todd <[email protected]>", | ||
|
@@ -104,11 +104,11 @@ | |
"@seleniumhq/code-export-javascript-mocha": "^4.0.0-alpha.2", | ||
"@seleniumhq/code-export-python-pytest": "^4.0.0-alpha.2", | ||
"@seleniumhq/code-export-ruby-rspec": "^4.0.0-alpha.1", | ||
"side-code-export": "^4.0.0-alpha.10", | ||
"side-code-export": "^4.0.0-alpha.11", | ||
"@seleniumhq/get-driver": "^4.0.0-alpha.1", | ||
"@seleniumhq/side-api": "^4.0.0-alpha.25", | ||
"@seleniumhq/side-api": "^4.0.0-alpha.26", | ||
"@seleniumhq/side-model": "^4.0.0-alpha.4", | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.25", | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.26", | ||
"dnd-core": "^16.0.1", | ||
"electron-chromedriver": "^25.3.0", | ||
"electron-log": "^4.4.8", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@seleniumhq/side-api", | ||
"version": "4.0.0-alpha.25", | ||
"version": "4.0.0-alpha.26", | ||
"private": false, | ||
"description": "Selenium IDE API command shapes and such", | ||
"author": "Todd Tarsi <[email protected]>", | ||
|
@@ -20,7 +20,7 @@ | |
"@seleniumhq/browser-info": "^4.0.0-alpha.1", | ||
"@seleniumhq/get-driver": "^4.0.0-alpha.2", | ||
"@seleniumhq/side-model": "^4.0.0-alpha.4", | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.25", | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.26", | ||
"lodash": "^4.17.21" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// eslint-disable-next-line node/no-extraneous-import | ||
import { BrowserWindowConstructorOptions } from 'electron' | ||
|
||
/** | ||
* Open a window by name with options | ||
*/ | ||
export type Shape = ( | ||
name: string, | ||
filepath: string, | ||
opts?: BrowserWindowConstructorOptions | ||
) => Promise<void> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@seleniumhq/side-example-suite", | ||
"version": "4.0.0-alpha.2", | ||
"version": "4.0.0-alpha.3", | ||
"private": true, | ||
"description": "Selenium IDE example suite, with tests, plugin, and export format", | ||
"author": "Todd <[email protected]>", | ||
|
@@ -17,11 +17,11 @@ | |
"watch": "tsc --watch" | ||
}, | ||
"dependencies": { | ||
"side-code-export": "^4.0.0-alpha.10", | ||
"side-code-export": "^4.0.0-alpha.11", | ||
"@seleniumhq/code-export-python-pytest": "4.0.0-alpha.2" | ||
}, | ||
"devDependencies": { | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.25" | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.26" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@seleniumhq/side-runtime", | ||
"version": "4.0.0-alpha.25", | ||
"version": "4.0.0-alpha.26", | ||
"private": false, | ||
"description": "Selenium IDE playback and execution", | ||
"author": "Tomer <[email protected]>", | ||
|
@@ -31,7 +31,7 @@ | |
"@seleniumhq/side-commons": "^4.0.0-alpha.1", | ||
"@seleniumhq/side-model": "^4.0.0-alpha.4", | ||
"@types/selenium-webdriver": "^4.1.15", | ||
"selenium-webdriver": "^4.10.0" | ||
"selenium-webdriver": "^4.11.1" | ||
}, | ||
"gitHead": "507c7c802f34196e6ee4800bf5c0b36553d41369" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@seleniumhq/webdriver-testkit", | ||
"version": "4.0.0-alpha.1", | ||
"private": false, | ||
"version": "4.0.0-alpha.2", | ||
"private": true, | ||
"description": "Manage test driver installation", | ||
"author": "Tomer <[email protected]>", | ||
"homepage": "http://github.com/SeleniumHQ/selenium-ide", | ||
|
@@ -27,7 +27,7 @@ | |
"devDependencies": { | ||
"@types/fs-extra": "^8.0.1", | ||
"@types/selenium-webdriver": "^4.1.15", | ||
"selenium-webdriver": "^4.10.0" | ||
"selenium-webdriver": "^4.11.1" | ||
}, | ||
"dependencies": { | ||
"@seleniumhq/browser-info": "^4.0.0-alpha.1", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.