capybara
capybara copied to clipboard
Acceptance test framework for web applications
Simple repro Rails 7 app attached [1]. The idea is that after doing ``` bin/rails test:system ``` the process never finishes after printing ``` Finished in 1.972128s, 0.5071 runs/s, 0.5071...
**Note:** This is for issues with Capybara. If you have a howto type question, please ask on the mailing list as requested in the README: http://groups.google.com/group/ruby-capybara ## Meta Capybara Version:...
I just updated to Rails 7.2.1.2 which included an update to rackup 1.0.1. My app runs fine but when trying to run tests with the latest Capybara I am getting:...
This commit addresses `warning: URI::RFC3986_PARSER.make_regexp is obsoleted. Use URI::RFC2396_PARSER.make_regexp explicitly.` warning Ruby 3.4 changes URI::DEFAULT_PARSER to URI::RFC3986_Parser and deprecates URI::RFC3986_PARSER.make_regexp. This commit uses `URI::RFC2396_PARSER` only if it is available for...
## Meta Capybara Version: 3.40.0 Driver Information (and browser if relevant): selenium-webdriver 4.10.0 and Chrome ## Expected Behavior "Continue" button is clicked sending a POST request to my Controller and...
The `clear_local_storage` and `clear_session_storage` methods are deprecated in the latest version of Selenium. Capybara calls them, e.g. https://github.com/teamcapybara/capybara/blob/3.40.0/lib/capybara/selenium/driver.rb#L371 ## Expected Behavior No deprecation warnings. ## Actual Behavior ``` WARN Selenium...
Capybara calls the method in a couple places: * https://github.com/teamcapybara/capybara/blob/master/lib/capybara/session/config.rb#L86C37-L86C68 * https://github.com/teamcapybara/capybara/blob/master/lib/capybara/session/config.rb#L95 This results in a verbose-mode warning when using Ruby 3.4.0-preview2: ``` lib/capybara/session/config.rb:95: warning: URI::RFC3986_PARSER.make_regexp is obsoleted. Use URI::RFC2396_PARSER.make_regexp...
Hi, thanks for maintaining this fantastic library! I just noticed a little issue with the Documentation of the `Capybara::Node::Element#click`-Method, where some information is present in the docstring but does not...
**Note:** This is for issues with Capybara. If you have a howto type question, please ask on the mailing list as requested in the README: http://groups.google.com/group/ruby-capybara ## Meta Capybara Version:...