Jump to content

Could not connect with with Google Chrome Version Version 130.0.6723.59 by using 'debuggerAddress: localhost:9222'


Recommended Posts

@Danp2

good day

i am using 

#Region wd_capabilities.au3 - UDF Header
; #INDEX# ========================================================================
; Title .........: wd_capabilities.au3
; AutoIt Version : v3.3.14.5
; Language ......: English
; Description ...: A collection of functions used to dynamically build the Capabilities string (JSON formatted) required to create a WebDriver session
; Author ........: mLipok
; Modified ......: Danp2
; URL ...........: https://www.autoitscript.com/wiki/WebDriver_Capabilities
; Date ..........: 2022/07/27
; ================================================================================
 

Link to comment
Share on other sites

That doesn't really help because the date in the header hasn't been updated in two years. The "debuggerAddress" functionality was added since then, so you need to make sure that --

  • you are using the latest release of the UDF including all of the associated files such as wd_helper.au3, wd_capabilities.au3, etc.
  • you dont have an older copy of these files somewhere that are being accessed instead of the latest versions

The bottom line is that you have a configuration issue on your end if you can't successfully run the following line without errors --

_WD_CapabilitiesAdd("debuggerAddress","localhost:9222")

 

Link to comment
Share on other sites

i  have an older UDF, but it works with version chrome 124 32&64 bit.

when i insert this line

_WD_CapabilitiesAdd("debuggerAddress","localhost:9222")

I've empty session ID.

 

this is my previous code:

Func SetupChrome()

_WD_Option('Driver', 'chromedriver.exe')
_WD_Option('Port', 9515)
_WD_Option('DriverParams', '--verbose --log-path="' & @ScriptDir & '\chrome.log"')

$sDesiredCapabilities = '{"capabilities": {"alwaysMatch": {"goog:chromeOptions": {"debuggerAddress": "localhost:9222"}}}}'
;MsgBox(0,'',$sDesiredCapabilities)
EndFunc

the probleme is with not with chrome 130 .

nwd_helper.au3 Copyright (c) 2023 Dan Pollak (@Danp2)

wd_capabilities.au3  v3.3.14.5

wd_code.au3  Copyright (c) 2023 Dan Pollak (@Danp2)

wd_cdp.au3 Copyright (c) 2023 Dan Pollak

  WinHttpConstants.au3 Copyright 2013 Dragana R. <trancexx at yahoo dot com>

    Licensed under the Apache License, Version 2.0 (the "License");

WinHttp.au3:

 File Version.........: 1.6.4.2
; Min. AutoIt Version..: v3.3.7.20
; Description .........: AutoIt wrapper for WinHTTP functions
; Author... ...........: trancexx, ProgAndy
; Dll .................: winhttp.dll, kernel32.dll

 Json.au3 (2021.11.20)

 

Link to comment
Share on other sites

A few key points that I would like you to consider --

  • I can't speak for others, but I'm not able or willing to provide assistance if you can't stay up-to-date with the latest version of the Webdriver UDF.
  • Similarly, it isn't possible to provide support for older versions of browsers. If it is working with the latest version of Chrome, then it's likely that the problem existed in the older version of Chrome but has been fixed since then by the Chrome developers.
  • I suggest that you read this website. This isn't just directed at you; it's a common issue where people don't take the time to ask the correct question, explain the solution they are actually trying to solve, provide the necessary details, etc.

I'm happy to try to assist you further If you do the following --

  • post a simple script that we can actually run to observe the problem
  • it must utilize the latest version of the Webdriver UDF
  • it must utilize a more recent browser version
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...