arybalka
8 years agoOccasional Contributor
How to?/back browser button(JavaScript/Chrome)
Hi every one,
I can not find how to use back browser button.(JavaScript/Chrome)
I am looking for something like:
var page = Sys.Browser().Page("*");
page.back()//doesn't exist - just example
OR
Browsers.Item(btChrome).back()//doesn't exist - just example
Thanks
Instead of attempting a custom action or looking for a particular method, use the Keys method on the page object and send
Aliases.browser.myPage.Keys(~[Left])
I'm not entirely certain but I think this keystroke combination is supported by all browser types.