Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
nilesh
Posts : 1
Join date : 2011-11-29

Alternate to getEval("window.document.readyState") Empty Alternate to getEval("window.document.readyState")

Wed Nov 30, 2011 5:01 pm
Hi,

Need a method that wait till my page is loaded(all images,texts and all). window.document.readyState(javascript method) waits till all DOM object is loaded. I searched on net and found out a method window.onload and window.load but it didn't work as it was returning null.

My Code: Selenium RC using PHP

$total_wait = 3;
$this->max_load_time = 120;

while($total_wait <= $this->max_load_time && $this->getEval("window.document.readyState") <> "complete")
{
sleep(1);
$total_wait++;
}

In this case what happens is I get $this->getEval("window.document.readyState") == "complete" even before my objects like image and text is loaded because of which it doesn't enter into the loop and starts executing next statement(and eventually fail).

I don't want to use 'Sleep' as the page takes different amount of time to load.

Thanks in advance!!!!
Back to top
Permissions in this forum:
You cannot reply to topics in this forum