Kieran Gookey
Kieran Gookey
Yeah I'm also finding it doesn't work at all in node with the same error
@doshibadev I managed to do it using custom CDP commands ```python from botasaurus_driver import cdp def press_enter(driver: Driver): driver.run_cdp_command(cdp.input_.dispatch_key_event( type_="rawKeyDown", native_virtual_key_code=13, windows_virtual_key_code=13, unmodified_text="\r", text="\r" )) driver.run_cdp_command(cdp.input_.dispatch_key_event( type_="char", native_virtual_key_code=13, windows_virtual_key_code=13, unmodified_text="\r",...