-
-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test selecting time-zone during signup #435
base: main
Are you sure you want to change the base?
Conversation
- use active_element instead of finding input field by class
@pascallaliberte This looks good to me, and it looks like the dependent PRs were replaced by one in |
@pascallaliberte I saw that there was a linter error in Circle, so I fixed that, which got a new Circle run to kick off. But now there seems to be a legitimate failure related to these new tests. Can you take a look? |
@pascallaliberte Is this still something you'd like to get merged? |
@jagthedrummer yes, I'll scrub and polish it next week |
The process of selecting a time-zone during sign up is cumbersome because too many clicks are needed to use type-ahead search for
super_select
field that allow a single selection.Also, the existing
select2_select
helper only works withsuper_select
fields that allow multiple selections.This PR:
select2_select
helper work withsuper_select
fields that allow only a single selection. It simulates typing into the un-opened field and continues to type with the super_select dropdown opened and the input field in focus.authentication_test
to select the Time Zone during sign up.Co-dependent PRs (required for the test to pass):