joerg1985
joerg1985
@titusfortner I don't think the current Json de-/encoding does somehow modify the line endings. But changing this might result in other issues and should be checked agains the WebDriver spec....
@pujagani is there a long therm plan to support classic w3c commands or is the plan to shift to BiDi at a certain time? I am currently playing with BiDi...
I was reading the blog post and the javadoc before opening the issue, this gave me the feeling the getAttribute method is the legacy way of reading attributes/properties. If this...
I don't have opinion about this change, but some input from my side. > People expect that backwards incompatible changes only happen on Major releases. This could lead to major...
the same issue should exist for "insecure certificate" -> `InsecureCertificateException`
The java client has been fixed in 1cdf5b45852dcdea5a157324e029f2bffed58a98
@nvborisenko i think the "insecure certificate" -> InsecureCertificateException is still missing in c#? @diemol When searching for "detached shadow root" in the repo i can only find c# / java...
The CDP events are processed concurrently by different threads, i think this will destory the order. Other areas rely on this, e.g. the `NetworkInterceptor`: One thread will wait here for...
@pujagani this is a very special case, so i would empower the listener to handle this, e.g. like in the PR i will raise in the next minutes.
@zixinyin Starting with the next release it is possible to register a two argument listener, to sort the data: ``` TreeMap chunks = new TreeMap(); devTools.addListener(HeapProfiler.addHeapSnapshotChunk(), chunks::put); devTools.send(HeapProfiler.takeHeapSnapshot(Optional.of(false), Optional.of(false), Optional.of(false),...