longchasen
5 years agoContributor
Simulating Chrome Hard reload
im trying to simulate the chrome hard reload which is CTRL+SHIFT+R
here my page:
page = Sys.Browser().Page("localhostpage");
here's how im trying to simulate refresh
page.Keys("[Hold]^!r");
This is not working, any other way how to simulate it?
def reload(): pageObj = Aliases.whatever pageObj.Keys("[Hold]^!r[Release]")