Skip to content

Commit

Permalink
correct window handle field name
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtarsi committed Jul 23, 2023
1 parent 004f127 commit 30755f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/selenium-ide/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/selenium-ide",
"version": "4.0.0-alpha.43",
"version": "4.0.0-alpha.44",
"private": true,
"description": "Selenium IDE electron app",
"author": "Todd <[email protected]>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const CommandEditor: FC<CommandEditorProps> = ({
<CommandTextField
command={correctedCommand}
{...props}
fieldName="newWindowHandle"
fieldName="windowHandleName"
note="Variable name to set to the new window handle"
/>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface CommandArgFieldProps extends CommandEditorProps {
}

export interface CommandFieldProps extends CommandEditorProps {
fieldName: 'comment' | 'newWindowHandle' | LocatorFields
fieldName: 'comment' | 'windowHandleName' | LocatorFields
note?: string
}

Expand Down

0 comments on commit 30755f5

Please sign in to comment.