cuprite icon indicating copy to clipboard operation
cuprite copied to clipboard

Headless Chrome/Chromium driver for Capybara

Results 82 cuprite issues
Sort by recently updated
recently updated
newest added

Given HTML like: ``` ``` Then the following test will fail: ``` fill_in("control", with: "#c0ffee") expect(page).to have_content("changed") ``` This is because the `set` method for a color input only forces...

I am trying to use cuprite to test my scrappers, therefore I have a base test that is checking if it can connect to my browserless instance via `url` and...

Hello ! In my work, I'd like to have a remote chrome browser using https://hub.docker.com/r/browserless/chrome ```yml app: build: context: . # The target is really important here. It specifies which...

# Context When a user change/select the value (option) of a dropdown input : ``` Trigger events A B const selectInput = document.getElementById('test'); selectInput.addEventListener('change', () => console.log('CHANGE EVENT TRIGGERED)); selectInput.addEventListener('input',...

I'm trying to mock time on the frontend, for this I'm mocking time on the backend using ActiveSupport's travel_to and then trying to make it propagate to the browser ```rb...

chrome-bug

There appears to be an issue with [element.scrollWidth](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollWidth) in Cuprite. I have an element with a scrollWidth that is wider than it's clientWidth. which you can see in the DOM...

Feature request: - Provide an option to trace tests. Expected output: - When a test fails, users can view the tracing of the test (with screenshots), this allows easier debug....

Hey 👋 I have this issue with cuprite tests which I don't think we had before. It seems that the webpage does not resize with the viewport. This causes the...

Hello. I have form where some buttons are hidden when they are not hovered. The test looks like: ```ruby first("div[data-hover=\"display-wrapper\"]").hover click_on("Move") ``` On Cuprite 0.15 and Ferrum 0.14 it works...

This change aims to fix 5 specs that are currently failing consistently on `main` and 2 specs that are currently flaking fairly frequently. The 5 consistent spec failures can be...