Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Work around CSS shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
xeger committed Feb 26, 2023
1 parent e2365fb commit 07c8c40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/actions/fill.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function fill(
.type(value, FORCE_QUICK_QUIET);
return cy
.contains('button.dropdown-item', value, QUIET)
.click(QUIET);
.click(FORCE_QUIET);
} else if (isGearsSelect) {
if (logEntry) consoleProps.Type = 'React Select';
if (Array.isArray(value))
Expand All @@ -78,7 +78,7 @@ export function fill(
.parent(QUIET)
.get('.Select-menu', QUIET)
.contains('button', match.exact(value), QUIET)
.click(QUIET);
.click(FORCE_QUIET);
} else if (isTextInput) {
if (logEntry) consoleProps.Type = 'HTML input';
return (
Expand Down

0 comments on commit 07c8c40

Please sign in to comment.