Wait for complete page load in robot framework

Hi Team,

I want to wait for complete page load in robot framework. I found 2 options to wait for specific element
[Wait Until Page Contains Element] or [Wait Until Element Is Visible]

Is there any way to wait for complete page load using existing in built keyword of robot framework ?
e.g. Wait Until Page Loaded

Thanks

Hi @bk-user ,

I guess you could try Wait For Condition and wait for the javascript readyState to be complete:

	Wait For Condition	return document.readyState == "complete"

Never tried it myself so hope it works,

Dave.

3 Likes

Thanks @damies13 , Working for now

1 Like

I have also tried in my project and it works great without speed slow issue

1 Like