chrome-remote-interface icon indicating copy to clipboard operation
chrome-remote-interface copied to clipboard

Elixir Client for the Chrome Debugger Protocol

Results 13 chrome-remote-interface issues
Sort by recently updated
recently updated
newest added

I found a problem while working with my app. When chrome is opened, and then closed manually, I get a `{:remote, :closed}` termination from WebsockEx. I added a `handle_disconnect` callback...

Should benefit by providing some common use-case examples. These examples are built on unstable version and is not guaranteed to be working in the near future! --- > Taking a...

Hi all, great library. I'm trying to subscribe to the Page.lifecycleEvent in the below snippet: ```elixir with {:ok, _data}

For instance ```js page.setRequestInterception(true) ``` ```js page.on('request', request => { if (request.resourceType() === 'image' || request.resourceType() === 'stylesheet' || request.resourceType() === 'stylesheet' || ) request.abort(); else { request.continue(); } });...

Following on from the discussion of System Environment Variable versus App Config for configuration of the Compile Time protocol target: https://github.com/andrewvy/chrome-remote-interface/pull/27 @andrewvy has expressed concern regarding the use of environment...

Hi, I have chrome running as docker image with docker-compose. If I try to connect to exposed to local machine port - it works fine, however if I try to...

If usage of a deprecated API function call is detected, we should log out the deprecation message: ```json { "name": "addScriptToEvaluateOnLoad", "parameters": [ { "name": "scriptSource", "type": "string" } ],...

enhancement

Currently there are no unit/integration tests which makes me sad. 😢 It would be nice to setup simple integration tests with several chrome versions to catch regressions.

testing

Building on top of #6. We could also provide a blocking call, more akin to `GenServer.call` with timeout functionality if an event hasn't fired after `X` seconds, for synchronous use-cases....

enhancement

Right now, the auto-generated documentation at the moment is very lack-luster. I think we should be able to generate cleaner docs with nicer param formatting to make this even more...

enhancement
help wanted