-
-
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.
added a bunch more command preprocessors (variable handling) made everything 4.0.10 so incrementing versions can just be dumb i mean gosh maintaining versions manually is so painful changed some side tests to use a bunch more variables
- Loading branch information
Showing
24 changed files
with
249 additions
and
164 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@seleniumhq/browser-info", | ||
"version": "4.0.1", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Get information about installed browsers", | ||
"author": "Tomer <[email protected]>", | ||
|
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/get-driver", | ||
"version": "4.0.2", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Download browser drivers", | ||
"author": "Tomer <[email protected]>", | ||
|
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-api", | ||
"version": "4.0.8", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Selenium IDE API command shapes and such.", | ||
"author": "Todd Tarsi <[email protected]>", | ||
|
@@ -20,10 +20,10 @@ | |
"dist" | ||
], | ||
"dependencies": { | ||
"@seleniumhq/browser-info": "^4.0.1", | ||
"@seleniumhq/get-driver": "^4.0.2", | ||
"@seleniumhq/side-model": "^4.0.2", | ||
"@seleniumhq/side-runtime": "^4.0.7", | ||
"@seleniumhq/browser-info": "4.0.10", | ||
"@seleniumhq/get-driver": "4.0.10", | ||
"@seleniumhq/side-model": "4.0.10", | ||
"@seleniumhq/side-runtime": "4.0.10", | ||
"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
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-commons", | ||
"version": "4.0.1", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Selenium IDE common utilities", | ||
"author": "Tomer <[email protected]>", | ||
|
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.5", | ||
"version": "4.0.10", | ||
"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.5", | ||
"@seleniumhq/code-export-python-pytest": "^4.0.1" | ||
"side-code-export": "^4.0.10", | ||
"@seleniumhq/code-export-python-pytest": "4.0.10" | ||
}, | ||
"devDependencies": { | ||
"@seleniumhq/side-api": "^4.0.8" | ||
"@seleniumhq/side-api": "4.0.10" | ||
}, | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@seleniumhq/side-migrate", | ||
"version": "4.0.0-alpha.3", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Selenium IDE format migrations", | ||
"author": "Tomer <[email protected]>", | ||
|
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-model", | ||
"version": "4.0.2", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Selenium IDE shared models", | ||
"author": "Tomer <[email protected]>", | ||
|
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.7", | ||
"version": "4.0.10", | ||
"private": false, | ||
"description": "Selenium IDE playback and execution", | ||
"author": "Tomer <[email protected]>", | ||
|
@@ -25,13 +25,13 @@ | |
"url": "https://github.com/SeleniumHQ/selenium-ide/issues" | ||
}, | ||
"devDependencies": { | ||
"@seleniumhq/get-driver": "^4.0.2", | ||
"@seleniumhq/side-testkit": "^4.0.1", | ||
"@seleniumhq/webdriver-testkit": "^4.0.2" | ||
"@seleniumhq/get-driver": "4.0.10", | ||
"@seleniumhq/side-testkit": "4.0.10", | ||
"@seleniumhq/webdriver-testkit": "4.0.10" | ||
}, | ||
"dependencies": { | ||
"@seleniumhq/side-commons": "^4.0.1", | ||
"@seleniumhq/side-model": "^4.0.2", | ||
"@seleniumhq/side-commons": "4.0.10", | ||
"@seleniumhq/side-model": "4.0.10", | ||
"@types/selenium-webdriver": "^4.1.22", | ||
"selenium-webdriver": "^4.20.0" | ||
}, | ||
|
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
Oops, something went wrong.