joerg1985

Results 187 comments of joerg1985

@VietND96 the JVM should detect the container enviroment and adjust these values automatically, see https://bugs.openjdk.org/browse/JDK-8146115 for details.

There are multiple limits to the [different areas ](https://deepu.tech/memory-management-in-jvm/#jvm-memory-structure) of the heap. So setting `MaxRAMPercentage` might not help here. When setting it to 100% the heap takes all the memory,...

Does `--websocket-port=0` work here to autoselect a port, like `--port=0` already does?

> I filed a meta bug for now (https://bugzilla.mozilla.org/show_bug.cgi?id=1953520) to collect requirements. Note that we most likely will not get to it soon. @whimboo is it naive to assume this...

@rishabhjain-qait Is this happening shortly after the session is started? A small delay in processing the `NodeRestartedEvent` might cause this trouble.

Why not `-Xep:NullAway:ERROR`, otherwise the huge output of the CI might swallow the warnings. What do others think about this?

@pujagani i can only provide some code to show this without a browser, see below. As soon as the `delay` between sending `network.beforeRequestSent` and `network.responseStarted` is high enought everything works...

It might be better to raise a speaking WebDriverException instead of just returning false, this could help people to understand what is wrong. Beside this, i am not sure this...

PS: comparing strings with `!=` is a reference check in java, this must be changed to `.equals`

Don't get me wrong, but i think the only way to check if something is clickable is to click and check **exactly** the expected action happens. And this check does...