0

I can't find a way press the browser back button or to inject a script that navigates back using FluentAutomation. Is there any way to do this at all?

Mo H.
  • 1,788
  • 1
  • 18
  • 28
victorvartan
  • 1,002
  • 2
  • 11
  • 31

1 Answers1

2

Actually it is possible to inject a script to navigate back, like this:

((IJavaScriptExecutor)FluentTest.ProviderInstance).ExecuteScript(@"window.history.back()");
victorvartan
  • 1,002
  • 2
  • 11
  • 31