Select sync mode dropdown with a data-testid #16053
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
Adds a
data-testid
selector to the dropdown so it can be selected in cypress tests without relying on unreliable generated class names; also adjusts the strategy for selecting the dropdown option. While using adata-testid
attribute is usually the best way to select parts of the UI in tests, the menu items within the dropdown are dynamically constructed by thereact-select
library after being passed around multiple files: customizing this would be confusing to write and maintain. Instead, we can use the.react-select__menu
class to identify the dropdown menu (since only one will be open at a time) and usecy.contains
to select specific dropdown items by their text content.