Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Is there an easy way to reload the current page i.e. doing Ctrl R?
There doesn't seem to be an in-built option and I tried using Browser/Type/<CONTROL>R (with 0 interval)
@user66 Reload the Page: Javascript - window.location.reload();
@super84 that doesn't work, unfortunately, it gives me an error in the log...
[10:41:26] Thread #1 : ReferenceError: Can't find variable: window during execution of action 824059657
I added this under Tools/Execute code - Was that correct?
@user66
Thanks!
That was it. I had to add a page wait afterwards to get it to work properly, but it now does the business.
What is the Tools/Execute Code for then?
@BAS-Viet-Nam Okay, thank you for the hint. Worked on many sites with these 2 functions without any problems. So I will try it with "Wait while element exists" on this specific site. Hopefully I don't get in an endless waiting-loop ;)
@GaG Big thanks, I will check out today
I've tried the same thing as you and for me it's working in RUN mode. Have you managed to make it work?
@peellpeell
if you know what time is it, why dont set a timer?
run 2 threads, one for waiting 14 minutes (or whatever), second doing your job.
tell first one to set variable to false or true when 14minutes passed, and when that variable is false/true dont load any page in other thread
(PS u might want to use global variables)