How to configure PageLoadStrategy.EAGER

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

You can configure it in the desired capabilities under below path:
Project-Settings-Desired Capabilities -WebUI-Choose the browser (in your case chrome)- Add the desired capability and apply.
I am not 100% sure if this is the right approach but it’s just my suggestion.