Description
There are scenarios when we want to go back to the previous web page as part of our workflow.
In this article, you will see 3 different ways to perform this action.
Instructions
There are 3 methods to return to a previous web page in a workflow:
-
Using the Send hotkey activity — press the Alt key and the left arrow together.
-
Using the Click on image activity — select the back arrow on the left side of the browser's top bar.
-
Using the Execute Javascript activity — read Window history.back() then add this script:
function test () {
history.back();
}