-
Notifications
You must be signed in to change notification settings - Fork 123
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
not able to write feature test when datapickers are involved #66
Comments
Ana06
added a commit
to Ana06/osem
that referenced
this issue
Mar 6, 2019
I didn't manage to fix it. The problem is already reported upstream: TrevorS/bootstrap3-datetimepicker-rails#66 akarzim/capybara-bootstrap-datepicker#14
Ana06
added a commit
to Ana06/osem
that referenced
this issue
Mar 6, 2019
I didn't manage to fix it. The problem is already reported upstream: TrevorS/bootstrap3-datetimepicker-rails#66 akarzim/capybara-bootstrap-datepicker#14
Ana06
added a commit
to Ana06/osem
that referenced
this issue
Mar 7, 2019
It doesn't make sense to test this with a feature test as it is just testing that the controller actions work properly. Moreover, there are problems with updating datapickers in feature tests. I reported those problems upstream: TrevorS/bootstrap3-datetimepicker-rails#66 akarzim/capybara-bootstrap-datepicker#14
Ana06
added a commit
to Ana06/osem
that referenced
this issue
Mar 7, 2019
It doesn't make sense to test this with a feature test as it is just testing that the controller actions work properly. Moreover, there are problems with updating datapickers in feature tests. I reported those problems upstream: TrevorS/bootstrap3-datetimepicker-rails#66 akarzim/capybara-bootstrap-datepicker#14
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using bootstrap3-datetimepicker-rails 4.17.47, rspec 3.6.0 and capybara 3.12.0. I have tried several solutions to modify the datapickers in a feature test, but any of them worked:
page.execute_script("$('#registration-period-start-datapicker').datepicker('setDate', '01/01/2010')")
page.execute_script("$('#registration-period-start-datapicker'').val('21/12/1980')")
fill_in 'registration-period-start-datapicker', :with => '21/12/1980'
$('#registration-period-start-datapicker').datetimepicker({value: '21/12/1980'})
I have the following code in Rails:
With this JavaScript:
the generated html:
Original code in github.com/openSUSE/osem
Related to: #36
The text was updated successfully, but these errors were encountered: