Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/23/2024 in all areas

  1. Unsure if this is intended, but as some of you noticed chromedriver now tries to use a random port on opening. You can override that by supplying the desired port number as a parameter -- _WD_Option('DriverParams', '--port=9515 --verbose --log-path="' & @ScriptDir & '\chrome.log"')
    3 points
  2. The _WD_Option('Port', 9515) line lets the webdriver UDF know the port number to use to communicate with the webdriver console, so you will likely run into more issues by commenting it out.
    1 point
  3. @Danp2YEESSSSSSSSSSSSSSS you did it Danp2!!!!! Adding --port=9515 to the DriverParams gets Chromedriver v128 working with Chrome v128. I would expect WD_Option('Port', 9515) doing the same thing, NOTTTTTT!!! Very strange!!! Somehow this line is ALSO needed according to Danp2!!! So leave it in your script! Thank for finding the solution. _WD_Option('Driver', 'chromedriver.exe') _WD_Option('Port', 9515) ;<====Leave this line in (see comment below Danp2) _WD_Option('DriverParams', '--port=9515 --verbose --log-path="' & @ScriptDir & '\chrome.log"')
    1 point
  4. Guess thats one for Neil as i have no idea about that stuff and would have to start digging into it first.
    1 point
  5. ioa747

    FileCreateShortcut Issue

    From HelpFile: look at the example Edit: with "D:\Install\App_Config\Digital_Audio\6_Testing\Data\Test_Master" You give the path but not the name and it thinks the name is Test_Master and puts it in the Data folder
    1 point
  6. Is already in there since 2021, so we have had issues with the missing msvcp140.dll before, but not with an invalid one as far as I remember: System::Call 'KERNEL32::LoadLibrary(t "$SysDir\msvcp140.dll")p.r0' ${If} $0 P<> 0 DetailPrint "I was able to load the msvcp140 run-time dll" ${Else} MessageBox MB_ICONEXCLAMATION|MB_YESNO "Please install the vc_redist.x86.exe as msvcp140.dll isn't available on yoursystem!$\nSciTE will likely fail without this.$\nOpen Microsoft downloads?: https://www.microsoft.com/en-us/search?q=vc_redist.x86" IDNO +2 ExecShell open "https://www.microsoft.com/en-us/search?q=vc_redist.x86" DetailPrint "vc_redist.x86.exe not loaded yet so SciTE likely won't run." DetailPrint "Visit https://www.microsoft.com/en-us/search?q=vc_redist.x86 and download/install vc_redist.x86.exe." ${EndIf} DetailPrint "===== Install finished. =========================================="
    1 point
  7. jpm

    ListView strange behavior

    Hi, As the return can be several values separated by "|" it is normal for me that the return is a string even if only one is returned
    1 point
  8. So I guess it all points to an invalid/old/wrong MSVCP140.dll file, so restored the 2 downloads for others to test as well.
    1 point
  9. Using Chrome v128.0.6613.85 with Chromedriver 127.0.6533.120 works, so this combination could be used as temporary workaround. For me however this only a potential workaround because all my scripts automatically check and download the newest Chromedriver paired with Chrome automatically when executed ☹️ Console ouput using the v127 webdriver: _WD_Option ==> Success [0] : Parameters: Option=Driver Value=chromedriver.exe _WD_Option ==> Success [0] : Parameters: Option=Port Value=9515 _WD_Option ==> Success [0] : Parameters: Option=DriverParams Value=--verbose --log-path="..\Autoit\Chromedriver Webdriver Tester\chrome.log" _WD_GetFreePort ==> Success [0 / 9515] : Parameters: MinPort=9515 MaxPort=Default _WD_IsLatestRelease ==> Success [0] : True _WD_Startup: OS: WIN_10 X64 19045 _WD_Startup: AutoIt: 3.3.16.0 _WD_Startup: Webdriver UDF: 1.3.1 (Up to date) _WD_Startup: WinHTTP: 1.6.4.1 (Download latest source at <https://raw.githubusercontent.com/dragana-r/autoit-winhttp/master/WinHttp.au3>) _WD_Startup: Driver: chromedriver.exe (64 Bit) _WD_Startup: Params: --verbose --log-path="..\Chromedriver Webdriver Tester\chrome.log" _WD_Startup: Port: 9515 _WD_Startup: Command: "chromedriver.exe" --verbose --log-path="..\Autoit\Chromedriver Webdriver Tester\chrome.log" _WD_Startup ==> Success [0] _WD_CapabilitiesAdd ==> Success [0] : Successfully used [alwaysMatch] with specified browser: chrome _WD_CapabilitiesAdd ==> Success [0] : Successfully added capability _WD_CapabilitiesAdd ==> Success [0] : Successfully added capability __WD_Post ==> Success [0] : HTTP status = 200 _WD_CreateSession ==> Success [0] : 67aa435790af892f26341bd9b796f6de __WD_Post ==> Invalid argument [5] : HTTP status = 400 _WD_Navigate ==> Invalid argument [5] : Parameters: URL=******
    1 point
×
×
  • Create New...