Update Selenium Frame VBA

1

Expensive,

How can I do to update a frame with Selenium in VBA?

Refresh frame is an option that exists when you right-click on a frame.

I can not update the whole window, just the frame.

    
asked by anonymous 16.03.2018 / 13:35

1 answer

2

You did not send any code, nor did you 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
    
25.04.2018 / 17:54