Sorry for offtopic, but I cannot find a way to report in issue in JIRA !
It's about open() method which times out on certain websites (for instance www.myspace.com and www.yandex.ru) even though the page appears fully loaded. It happens even if increase the timeout to 60s.
Update:
I changed the topic to reflect the more important issue discussed in this thread. Initially it was about me not being able to find a "create new issue" link in on the QA page, which turned out to be some obsucre bug (?) in the web site, equiring me to log in twice.
Suggestion - adding "loging to create a new issue" message would be very helpful.
Currently the issue can be summarized as follows:
i can successfully open those two websits in iehta mode. can you elaborate your envronment, such as selenium version, OS, borwser proxy etc.
you can file a bug in http://jira.openqa.org/secure/Dashboard.jspa. but before doing that, double check this issue has nothing to with your special environment and can be repeatable in other computers.
Sorry for not posting all the details in the first place - I actually intended to ask about submitting the bug and than submit it with all the details.
BTW, I still cannot find an option to submit a new bug on this (http://jira.openqa.org/secure/Dashboard.jspa) page. What I'm I missing ?
I'm using "iexploreproxy" mode for capture_entire_page_screenshot to function properly. It appears that the problem does not manifest itself in iehta mode.
My code (in Perl):
my $browser = "*iexploreproxy";
my $sel = Test::WWW::Selenium->new( host => "localhost",
port => 4444,
browser => $browser,
browser_url => $url,
default_names => 1);
$sel->set_timeout(60000);
eval {$sel->open($url)};
print "Open() failed, will try to capture anyway. Error message: $@" if $@;
$sel->capture_entire_page_screenshot($tmp);
$sel->stop;
This code work OK for most of the sites, but times out for myspace and yandex.
My environment:
WinXP SP2, IE 7.0 (initially tried with IE 6 with the same result)
Selenium version:
v1.0-SNAPSHOT [1123], with Core v1.0-SNAPSHOT [2282]
Perl driver version 1.16
As I already wrote a few lines above, CaptureEntirePageScreenshot does not work with *iehta.
I finally got it why I did not see "create a new issue" option. I was logged in to openqa.org web site and was able to post in a forum, but for some reason it was not enough for QA system where I had to log in one more time... Looks like a bug to me as well...
CaptureEntirePageScreenshot does work with IE (see code and comments, documentation is apparently not up to date), but only in iexploreproxy mode.
Let me understand - is iexploreproxy somehow depricated ? If so, how come CaptureEntirePageScreenshot IE support was added to this mode and not to iehta ?
thank you for correcting me. i have chcke the latest code http://svn.openqa.org/fisheye/browse/selenium/trunk/src/main/resources/core/scripts/selenium-api.js?r=2313
now i have the same question with you, why can't iehta or iexplore use this command?
