-
-
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.
type events record correctly side runner does persist session correctly (and lost a buncha code :D) added commands for requesting good selectors for coordinates modified base event listeners to be able to send back a response so we can ask the browser for stuff easier corrected step insert positioning removed sandbox parameter (turned out to be non-essential my b)
- Loading branch information
Showing
22 changed files
with
165 additions
and
199 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/selenium-ide", | ||
"version": "4.0.0-alpha.57", | ||
"version": "4.0.0-alpha.58", | ||
"private": true, | ||
"description": "Selenium IDE electron app", | ||
"author": "Todd <[email protected]>", | ||
|
@@ -104,9 +104,8 @@ | |
"@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.11", | ||
"@seleniumhq/get-driver": "^4.0.0-alpha.1", | ||
"@seleniumhq/side-api": "^4.0.0-alpha.35", | ||
"@seleniumhq/side-api": "^4.0.0-alpha.36", | ||
"@seleniumhq/side-model": "^4.0.0-alpha.4", | ||
"@seleniumhq/side-runtime": "^4.0.0-alpha.31", | ||
"dnd-core": "^16.0.1", | ||
|
@@ -120,6 +119,7 @@ | |
"react-dnd": "^16.0.1", | ||
"react-dnd-html5-backend": "^16.0.1", | ||
"react-dom": "^18.2.0", | ||
"side-code-export": "^4.0.0-alpha.11", | ||
"v8-compile-cache": "^2.3.0" | ||
}, | ||
"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
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/side-api", | ||
"version": "4.0.0-alpha.35", | ||
"version": "4.0.0-alpha.36", | ||
"private": false, | ||
"description": "Selenium IDE API command shapes and such", | ||
"author": "Todd Tarsi <[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
11 changes: 11 additions & 0 deletions
11
packages/side-api/src/commands/recorder/onRequestElementAt.ts
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 @@ | ||
import { BaseListener } from '../../types/base' | ||
|
||
/** | ||
* Called when the project editor asks the recorder to select an element. | ||
*/ | ||
export type Shape = BaseListener< | ||
OnRequestElementAtRecorder, | ||
OnRequestElementAtRecorderResult | ||
> | ||
export type OnRequestElementAtRecorder = [number, number] | ||
export type OnRequestElementAtRecorderResult = [string, string][] | 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** | ||
* Return a list of targets that are at the given coordinates. | ||
*/ | ||
export type Shape = (x: number, y: number) => Promise<[string, string][]> |
Oops, something went wrong.