Hi all,
I meet some elements when clicking I got error " stale element reference: element is not attached to the page"
I searched on internet and found a way to set PageLoadStrategy.EAGER to overcome the problem and it works on java selenium codes.
Could you please show how to configure PageLoadStrategy.EAGER in Katalon?
This is similar with the below java code:
ChromeOptions options = new ChromeOptions();
options.setPageLoadStrategy(PageLoadStrategy.EAGER);
driverM = new ChromeDriver(options);
Thanks
Hoang