Forum Discussion

arybalka's avatar
arybalka
Occasional Contributor
7 years ago
Solved

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  ...
  • tristaanogre's avatar
    7 years ago

    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.