EdwinVanVliet
EdwinVanVliet
@lopukhDA For what it's worth; I created a PR which allows you to handle the WaitForDebuggerOnStart property correctly using Selenium. https://github.com/SeleniumHQ/selenium/pull/10603 You can subscribe to the AttachToTarget event on the...
Hi @titusfortner Thanks for your response. The changes I made are mimicking the behavior of Puppeteer (https://github.com/puppeteer/puppeteer) and (https://github.com/microsoft/playwright). Both those tools have have are waiting on new targets by...
@titusfortner Hi, Did you have any change to look at my reply? https://github.com/SeleniumHQ/selenium/pull/10603#issuecomment-1125774612 With kind regards
@nvborisenko You are right about this issue still being actual. Like you said, Selenium is not able to monitor the network in time when opening a new tab in it's...
@nvborisenko I've rewritten the example a bit to demonstrate the issue I'm facing. Added the async modifier to the event handler and now use the singular SendCommand functions. Note that...
@nvborisenko I think the problem is related to invoking a command while handling the event. I also tried converting the TargetAttached event to async, but without succes. Keeps hanging on...
@nvborisenko The issue we are facing is that sending the commands from within the event handler seems to lock. I've adjusted the code example a bit that it won't continue...
@nvborisenko > My first thoughts are we should clearly understand what commands we want to send! I mean what are correct commands we should send.. My next steps are to...