Erik_NJ Posted April 8 Posted April 8 It seems Microsoft changed something (again) and the UDF is not downloading the latest Edge webdriver, just a heads up.
Kelv Posted April 10 Posted April 10 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
CodeWriter Posted April 14 Posted April 14 @Danp2 Are there plans to update your Webdriver UDF with a work-around for Microsoft’s policy change?
Danp2 Posted April 16 Posted April 16 @CodeWriter I haven't had time to investigate. PRs are obviously welcome. 😉 Latest Webdriver UDF Release Webdriver Wiki FAQs
Nine Posted April 17 Posted April 17 On 4/16/2026 at 6:09 AM, Danp2 said: PRs are obviously welcome What is PR ? “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
ioa747 Posted April 18 Posted April 18 1 hour ago, Nine said: What is PR ? pull requests on github I know that I know nothing
Nine Posted April 18 Posted April 18 1 hour ago, ioa747 said: pull requests on github No idea what it means, but thanks anyway “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
ioa747 Posted April 18 Posted April 18 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. Nine 1 I know that I know nothing
argumentum Posted April 18 Posted April 18 >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" Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting
argumentum Posted April 18 Posted April 18 ..jinx Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting
Danp2 Posted April 21 Posted April 21 https://github.com/Danp2/au3WebDriver/pull/548 argumentum and ioa747 2 Latest Webdriver UDF Release Webdriver Wiki FAQs
CodeWriter Posted yesterday at 02:19 PM Posted yesterday at 02:19 PM (edited) @Danp2 Thank you for the update; however, I'm still getting errors that MS Edge driver failed to update with 1.5.0 Edited yesterday at 02:19 PM by CodeWriter
Danp2 Posted 23 hours ago Posted 23 hours ago @CodeWriter Perhaps you misunderstood the current state of things. Here's a quick rundown -- The PR I linked has been proposed by another user The PR hasn't been merged yet because I haven't verified its functionality It will be included in a future release after it has been merged into the main branch The fix is fairly simple, so you are can certainly modify your local copy of the UDF to test it yourself. Latest Webdriver UDF Release Webdriver Wiki FAQs
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now