Windows 11 Chrome.ahk not connecting to port 9222

Put simple Tips and Tricks that are not entire Tutorials in this forum
HeXaDeCiMaToR
Posts: 155
Joined: 08 Feb 2021, 12:42

Windows 11 Chrome.ahk not connecting to port 9222

11 Apr 2022, 13:49

I don't know if this is the right place to post this (or if this is already posted), but I figured out the issue the Windows 11 Chrome.ahk not connecting to localhost:9222.

in the Chrome Class "GetPageList" all I did was add "/list" after "/json" in the "http.open" line. This works with Windows 10 as well if you haven't yet updated to 11.

Code: Select all

GetPageList()
{
	http := ComObjCreate("WinHttp.WinHttpRequest.5.1")
	http.open("GET", "http://127.0.0.1:" this.DebugPort "/json/list")
	http.send()
	return this.Jxon_Load(http.responseText)
}
gregster
Posts: 9035
Joined: 30 Sep 2013, 06:48

Re: Windows 11 Chrome.ahk not connecting to port 9222

11 Apr 2022, 14:19

I have moved it to "Tips and Tricks", but an additional reference in the main Chrome.ahk topic by geek (formerly known as GeekDude) would probably be useful.
HeXaDeCiMaToR
Posts: 155
Joined: 08 Feb 2021, 12:42

Re: Windows 11 Chrome.ahk not connecting to port 9222

11 Apr 2022, 14:27

gregster wrote:
11 Apr 2022, 14:19
I have moved it to "Tips and Tricks", but an additional reference in the main Chrome.ahk topic by geek (formerly known as GeekDude) would probably be useful.
Thank you :D

Return to “Tips and Tricks (v1)”

Who is online

Users browsing this forum: No registered users and 53 guests