Posts by MarceloPBG • 46 points
3 posts
-
0
votes1
answer2766
viewsA: How to make a Dowload in IE via VBA?
You can interact with the PDF, for example by downloading it from the URL created for a specified folder, using the Urldownloadtofile function, Declare Function URLDownloadToFile _ Lib "urlmon"…
-
3
votes1
answer516
viewsA: Access Site By Loggin
Try the following code: Private Sub AcessarSite() Dim driver As InternetExplorer Dim elem As HTMLBaseElement Dim url As String url = "https://www.newspace.com.br/pan/" Set driver = New…
-
0
votes1
answer901
viewsA: VBA Download pdf
When the new page opens, try switching from screen to commands: Parent_Window = driver.getWindowHandle driver.switchTo.window(Parent_Window) This way you can access the new screen and interact with…