1
Expensive,
How can I update a frame with Selenium in VBA?
Updating frame is an option that exists when right-clicking on some frame.
I can’t update the whole window, only the frame.
1
Expensive,
How can I update a frame with Selenium in VBA?
Updating frame is an option that exists when right-clicking on some frame.
I can’t update the whole window, only the frame.
2
You didn’t send any code, or clarify the browser, but I think it would work:
Dim Oxente As Selenium.ChromeDriver
Oxente.SwitchToFrame "identificador-da-frame" 'Vai para a frame
Oxente.Refresh
Oxente.SwitchToDefaultContent 'Retorna ao principal
Browser other questions tagged excel vba selenium excel-vba selenium-webdriver
You are not signed in. Login or sign up in order to post.