Skip to content

Commit 7023e09

Browse files
committed
chore: Fix log output.
1 parent 6ee17d7 commit 7023e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/webdriverio/test/scroll_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ suite('Scrolling into view', function () {
201201
const workspace = Blockly.getMainWorkspace() as Blockly.WorkspaceSvg;
202202
return workspace.getBlocksByType(
203203
'controls_if',
204-
).map((block) => { (block as Blockly.BlockSvg).id });
204+
).map((block) => { return (block as Blockly.BlockSvg).getFocusableElement().id });
205205
});
206206
console.log('matched blocks to controls_if:', matchedBlocks);
207207
const inViewport = await this.browser.execute(() => {

0 commit comments

Comments
 (0)