Boni García

Results 84 comments of Boni García

@alyssaxuu Did you manage to use `chrome.tabCapture.capture` in Firefox? I read that this should be possible (in this issue and [here](https://bugzilla.mozilla.org/show_bug.cgi?id=1391223)), but I get the following error to invoke this...

Not bad idea. I'll try to do it for the next version. Unfortunately I don't know when I'll be able to do it. PRs are welcome.

I have just made some quick test and it seems working, at least when using Windows or Linux. I don't have a macOS to test it. To discover the problem,...

For getting the Selenium-Jupiter logs, you need to include a Logback configuration file (for example, like [this](https://github.com/bonigarcia/selenium-jupiter/blob/master/src/test/resources/logback-test.xml)) in your project classpath. The name of this file should be `src/test/resources/logback-test.xml` (if...

Not sure about VNC, but the driver instance seems to be properly created.

It seems the Docker container with the browser cannot be started. I don't know what the problem is, and unfortunately, I don't have a Mac to test with. If you...

As I temporary fix, you can try to include this logic in your test class: ``` static { System.setProperty("wdm.dockerDefaultArgs", "--disable-gpu,--no-sandbox"); } ``` If this works, I put it in the...

Please try this (I read the order of parameter might be important): ``` static { System.setProperty("wdm.dockerDefaultArgs", "--no-sandbox,--disable-gpu"); } ``` If this does not work, please try this: ``` static {...

I don't know, maybe you can try with even more shared memory: ``` docker run --rm --shm-size=2g --cap-add=SYS_ADMIN -p 4444:4444 -p 5900:5900 -e ENABLE_VNC=true selenoid/vnc:chrome_99.0 ``` ... or in your...

More precisely, it is related to: https://github.com/aerokube/images/pull/524