cuprite
cuprite copied to clipboard
Headless Chrome/Chromium driver for Capybara
Is it possible to open a remote inspector session to watch the test go by without interrupting its execution? I'm not pausing the test (not using `page.driver.debug` or `binding.pry`, etc)....
**Spec code** ```ruby window = window_opened_by do click_link 'Link to a page with iframe' end within_window window do expect(page).to have_content 'Wrapper page' end ``` **Expected** Find Wrapper page text **Actual**...
In our development environment we have certificates to allow us access to some things we want protected. It would be great if this functionality could be supported (https://github.com/ariya/phantomjs/blob/466ae257a91a88200976e81f0668dc309329e518/src/config.cpp#L76-L78)
Here is my capyabra integration with parallel specs: it should work out of the box, maybe it's useful for others ```ruby test_env_number = ENV["TEST_ENV_NUMBER"].to_i Capybara.server_port = 9887 + test_env_number Capybara.register_driver...
When trying to get a test working which creates a request across two domains, the status received from the _other_ domain is a 403, however setting the browser options to...
Axe
Hi all, I'm hoping this isn't the wrong place to put this comment, but I've found a breaking change in a library I rely on heavily and wanted to see...
Hello! I'm testing cuprite to replace chromedriver in our test suite and I've noticed a weird behaviour using `fill_in :element, with: ''`. When doing this in an input text it...
I'm using SortableJS, which supports the ability to require the mouse be held for a period of time (in our case 300ms) before the user can drag the element. Inspired...
We are occasionally seeing this error come from Ferrum: ``` Argument should belong to the same JavaScript world as target object ``` From what I can tell, it may have...
## Reproduction This code uses Capybara's `synchronize` inside of `within`. The code inside `synchronize` always fails, but that's a simplification from the real application. The page has JavaScript that fully...