We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee17d7 commit 7023e09Copy full SHA for 7023e09
test/webdriverio/test/scroll_test.ts
@@ -201,7 +201,7 @@ suite('Scrolling into view', function () {
201
const workspace = Blockly.getMainWorkspace() as Blockly.WorkspaceSvg;
202
return workspace.getBlocksByType(
203
'controls_if',
204
- ).map((block) => { (block as Blockly.BlockSvg).id });
+ ).map((block) => { return (block as Blockly.BlockSvg).getFocusableElement().id });
205
});
206
console.log('matched blocks to controls_if:', matchedBlocks);
207
const inViewport = await this.browser.execute(() => {
0 commit comments