Jump to content

Recommended Posts

Posted

It seems Microsoft changed something (again) and the UDF is not downloading the latest Edge webdriver, just a heads up.

Posted

Hello,

Microsoft no longer seems to allow public access to https://msedgewebdriverstorage.blob.core.windows.net/edgewebdriver/.
I’m using the au3WebDriver solution by Danp2 to manage the WebDriver, and my (crappy & temporary) solution was to modify the wd_helper.au3 library on my end so that it no longer calls the __WD_GetLatestWebdriverInfo function in _WD_UpdateDriver.
 

;           Local $aDriverInfo = __WD_GetLatestWebdriverInfo($aBrowser, $sBrowserVersion, $bFlag64) 
;           $iErr = @error                                                                                                                      
;           $iExt = @extended                                                                                                               
;           $sDriverLatest = $aDriverInfo[1]                                                                                            
;           $sURLNewDriver = $aDriverInfo[0]                                                                                        
            Local $sNewURL = $aBrowser[0][$_WD_BROWSER_NewDriverURL]                                        
            $sDriverLatest = $sBrowserVersion                                                                                       
            $sURLNewDriver = Execute($sNewURL)


if it helps :)
 

Posted

Pull requests on GitHub are a way for developers to propose changes to a project.
They allow you to notify team members that you have made a change (or a set of changes) in a separate branch,
and you would like them to review and potentially merge those changes into the main codebase.

I know that I know nothing

Posted

>my (crappy & temporary) solution was to modify the wd_helper.au3 library on my end so that
>PRs** are obviously welcome ( pull requests on github )

**Pull requests are proposals to merge code changes into a project. A pull request is GitHub's foundational collaboration feature, letting you discuss and review changes before merging them. This helps teams work together, catch issues early, and maintain code quality.

Not familiar with GitHub, the PR that came to mind was: "Public Relations are welcomed" :lol:

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

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
×
×
  • Create New...