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 baee47d commit e9ee83cCopy full SHA for e9ee83c
test/webdriverio/test/actions_test.ts
@@ -23,6 +23,7 @@ import {
23
} from './test_setup.js';
24
25
const isDarwin = process.platform === 'darwin';
26
+
27
const blockActionsViaKeyboard = [
28
{'text': 'Duplicate D'},
29
{'text': 'Add Comment'},
@@ -123,7 +124,8 @@ suite('Menus test', function () {
123
124
125
test('Shadow block menu via keyboard displays expected items', async function () {
126
await tabNavigateToWorkspace(this.browser);
- await focusOnBlock(this.browser, 'draw_circle_1_color');
127
+ await focusOnBlock(this.browser, 'draw_circle_1');
128
+ await this.browser.keys(Key.ArrowRight);
129
await this.browser.keys([Key.Ctrl, Key.Return]);
130
await this.browser.pause(PAUSE_TIME);
131
0 commit comments