Search found 6 matches
- 24 Aug 2023, 23:54
- Forum: Scripts and Functions (v1)
- Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
- Replies: 625
- Views: 171008
Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
cristalgrip If you want you can also install Chrome version 116.0.5845.96 to test if the issue is related to the outdated version of the webdriver. Link from here: https://chromedriver.chromium.org/downloads/version-selection -> Download link collection, latest Chrome + ChromeDriver releases: https...
- 22 Aug 2023, 07:13
- Forum: Scripts and Functions (v1)
- Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
- Replies: 625
- Views: 171008
Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
@cristalgrip
Does the version of chromedriver match with the browser version (116.0.5845.97)?
Bitness shouldn't be of importance as the communication between the webdriver and the browser is run through sockets.
Does the version of chromedriver match with the browser version (116.0.5845.97)?
Bitness shouldn't be of importance as the communication between the webdriver and the browser is run through sockets.
- 20 Aug 2023, 21:59
- Forum: Scripts and Functions (v1)
- Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
- Replies: 625
- Views: 171008
Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Xeo786 I have also a different topic, page.CDP is not accessible with Edge (version 115.0.1901.203 on Win10). The creation of the object fails in this step: __new(Address) { this.address := Address root := this.call("DOM.getDocument",{"depth": 0}) ;this.call("DOM.getDocument",{"":""}) <===== the qu...
- 20 Aug 2023, 21:30
- Forum: Scripts and Functions (v1)
- Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
- Replies: 625
- Views: 171008
Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Xeo786 How do you like the idea to add object support to ExecuteSync? Then we could hand over several objects as arguments to operate on. Here's a working example: #include Rufaydium.ahk Chrome:=new Rufaydium() page:=Chrome.NewSession(), page.url:="google.com" e:=page.getElementsByTagName("img")[0]...
- 20 Aug 2023, 19:18
- Forum: Scripts and Functions (v1)
- Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
- Replies: 625
- Views: 171008
Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
btw I just noticed Extension location should be base64 https://www.autohotkey.com/boards/download/file.php?id=21468 So I made few changes in capabilities to conver exension path to base64 but still I am unable to create session with addextension, Error says cannot unzip Chrome := new Rufaydium() ex...
- 20 Aug 2023, 18:39
- Forum: Scripts and Functions (v1)
- Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
- Replies: 625
- Views: 171008
Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Is there a way to disable headless mode without starting a new browser object/ restarting the script? I want to be able to fix login trouble / captcha if they occur then hide the window again, but keep headless mode as the default since errors like captcha are rare In case you're still searching fo...