Stephen Levine

Results 81 comments of Stephen Levine

Hi @se9958, If you're using Agouti with Gomega, you need to provide Gomega with a way to fail tests. If you're using the standard library `testing` package without a test...

Any interesting output with `agouti.Debug`?

I looked into the briefly today. The `--headless` and `--disable-gpu` options are options for Chrome, but I'm not sure what they do when passed to ChromeDriver. You could run Chrome...

@johanbrandhorst, I heard from @DanielJonesEB over Slack that the hanging is likely due to a bug or bugs in Chrome headless mode. I'll keep this issue open until it's resolved...

As asked in #119, what webdriver and browser are you using with Agouti?

Thanks, do you observe the same behavior with other webdrivers (ex. Chrome via Selenium, or Firefox via Selenium)?

To clarify, you've only observed this behavior when using two webdrivers simultaneously, one with electron, and one with a real browser? Agouti is just a wrapper for the API endpoints...

I merged the `Element` version of this before I noticed, but it appears that the `/size` and `/location` endpoints have been replaced with `/rect` endpoints for both element and window....

Hi @nickhell, I see two issues: 1. You need to call `agoutiDriver.Start()` before you request a new page from the `WebDriver` with `agoutiDriver.NewPage()`. 2. You should check your error values....

Hi @rburton, There are a few ways to do this: - If you're looking to clear an element and enter text into it, see `Selection.Fill()`. - If you're looking to...