Skip to content

Commit

Permalink
feat(keys): allow for comma key to be sent
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jan 12, 2024
1 parent 5f5d3b4 commit 6241f97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/library/src/WebdriverIOTestElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ const keyMap: Record<number, string> = {
[TestKey.F10]: 'F10',
[TestKey.F11]: 'F11',
[TestKey.F12]: 'F12',
[TestKey.META]: 'Meta'
[TestKey.META]: 'Meta',
[TestKey.COMMA]: ','
};

/** Module augmentation to expose the host element as a public api */
Expand Down

0 comments on commit 6241f97

Please sign in to comment.