Skip to content

Commit

Permalink
fix(combobox): adds vrt interaction
Browse files Browse the repository at this point in the history
  • Loading branch information
chasestarr committed May 13, 2020
1 parent add7101 commit 689405e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions vrt/config.js
Expand Up @@ -72,6 +72,30 @@ const config = {
},
],
},
combobox: {
interactions: [
{
name: 'listboxOpen',
behavior: async page => {
const input = await page.$('input');
await input.focus();
await page.keyboard.press('a');
},
},
],
},
'combobox-overrides': {
interactions: [
{
name: 'listboxOpen',
behavior: async page => {
const input = await page.$('input');
await input.focus();
await page.keyboard.press('a');
},
},
],
},
'data-table-extracted-highlight': {
interactions: [
{
Expand Down

0 comments on commit 689405e

Please sign in to comment.