How to refresh the browser tap or send hotkeys?
-
Hello community,
I'm trying to refresh the browser tap with the type text activity "{F5}" but it does not work like expected and there are no other activities to send hotkeys... can somebody advise me how to solve it? -
@roman-sinkarenko You have InvokeCode activity with dropdown list for Hotkeys.
-
@roman-sinkarenko use “execute script” to send
location.reload()
Or use 2 “open url” and go to a different page ( like google ) and back again -
The location.reload() function works fine! Thank you @Allan-Zimmermann .
@Dusan-Perkin do you mean the AutoHotkey Language?
If yes, can you please show me how I can use it for me. I have tried it, but it does not work for even a script like this:if WinExist("Untitled - Notepad")
WinActivate
else
Run Notepad
returnWhat do I miss? Can you show me a sample for using f5 or f4 on a specific window, please. That would be great for further automations. Thanks in advance
-
@roman-sinkarenko
Yea, So to do that you will need to add the word 'Send' before your hotkey '{F5}'.
Example: 'Send {F5}'