Skip to content

Commit 32d84b9

Browse files
committed
fix an issue testing for dead iframes
1 parent 13d3134 commit 32d84b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/selenium-ide/src/neo/IO/SideeX/ext-command.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export default class ExtCommand {
162162
}, { frameId: top ? 0 : frameId }).then(r => {
163163
return r;
164164
}).catch(error => {
165-
if (isReceivingEndError(error) && frameId && command !== "waitPreparation") {
165+
if (this.isReceivingEndError(error) && frameId && command !== "waitPreparation") {
166166
return this.waitForFrameToRespond(command, target, value, implicitTime);
167167
}
168168
throw error;

0 commit comments

Comments
 (0)