Skip to content

Commit 30755f5

Browse files
committed
correct window handle field name
1 parent 004f127 commit 30755f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/selenium-ide/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@seleniumhq/selenium-ide",
3-
"version": "4.0.0-alpha.43",
3+
"version": "4.0.0-alpha.44",
44
"private": true,
55
"description": "Selenium IDE electron app",
66
"author": "Todd <[email protected]>",

packages/selenium-ide/src/browser/windows/ProjectEditor/tabs/Tests/TestCommandEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const CommandEditor: FC<CommandEditorProps> = ({
6161
<CommandTextField
6262
command={correctedCommand}
6363
{...props}
64-
fieldName="newWindowHandle"
64+
fieldName="windowHandleName"
6565
note="Variable name to set to the new window handle"
6666
/>
6767
)}

packages/selenium-ide/src/browser/windows/ProjectEditor/tabs/Tests/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface CommandArgFieldProps extends CommandEditorProps {
1616
}
1717

1818
export interface CommandFieldProps extends CommandEditorProps {
19-
fieldName: 'comment' | 'newWindowHandle' | LocatorFields
19+
fieldName: 'comment' | 'windowHandleName' | LocatorFields
2020
note?: string
2121
}
2222

0 commit comments

Comments
 (0)