|
View:
New views
6 Messages
—
Rating Filter:
Alert me
|
|
|
*Timed out after 30000ms* error occuring in selenium IDEHi
I am using selenium IDE tool and have recorded Login functionality script. it went well when application is running but some times *URL under Test* means my base URL not working. <tr> <td>open</td> <td>https://202.65.132.9:7202/lop/BSMBranchAction.lpdu?activity=displayBranch</td> <td>Branch Information page</td> </tr> In this case when i play the same script, it's showing *Timed out after 30000ms* instead of showing this URL not found please let me know the reasons and how can i overcome this problem Thanks in advance Raghavan --------------------------------------------------------------------- Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=12629&messageID=39986#39986 --------------------------------------------------------------------- To unsubscribe, e-mail: selenium-ide-users-unsubscribe@... For additional commands, e-mail: selenium-ide-users-help@... |
|
|
Re: *Timed out after 30000ms* error occuring in selenium IDEOpen command waits until the complete page is loaded including images,
so it may timeout if you are opening a slow loading page. You can change the timeout value by inserting setTimeout command. On Wed, Feb 27, 2008 at 8:05 PM, raghavan <forum-selenium-ide-users@...> wrote: > Hi > > I am using selenium IDE tool and have recorded Login functionality script. it went well when application is running but some times *URL under Test* means my base URL not working. > <tr> > <td>open</td> > <td>https://202.65.132.9:7202/lop/BSMBranchAction.lpdu?activity=displayBranch</td> > <td>Branch Information page</td> > </tr> > In this case when i play the same script, it's showing > *Timed out after 30000ms* instead of showing this URL not found > > please let me know the reasons and how can i overcome this problem > > Thanks in advance > Raghavan > --------------------------------------------------------------------- > Posted via Jive Forums > http://forums.openqa.org/thread.jspa?threadID=12629&messageID=39986#39986 > > --------------------------------------------------------------------- > To unsubscribe, e-mail: selenium-ide-users-unsubscribe@... > For additional commands, e-mail: selenium-ide-users-help@... > > --------------------------------------------------------------------- To unsubscribe, e-mail: selenium-ide-users-unsubscribe@... For additional commands, e-mail: selenium-ide-users-help@... |
|
|
Re: *Timed out after 30000ms* error occuring in selenium IDE"Timed out" means that the request was sent to the server but that nothing came back in the 30 seconds (default timeout).
I've been reducing my timeout when I have simple pages, but I've had to make it larger as the other poster said when the backend takes too long (however anything over 5 seconds and the user starts hating the website). Reset to 45 seconds looks like: | setTimeout | 45000 | | However I've also had the IDE slip up sometimes and I'm not sure what's happening: once in a long while, usually as I'm developing a test, something happens and the IDE thinks the request has been sent to the server, but as I'm watching the server logs nothing ever shows up. Very infrequent, but I have seen it more than once. So you might review more of your test to see if there are some dependencies which result in a timing issue. Good luck, -Chris --------------------------------------------------------------------- Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=12629&messageID=40115#40115 --------------------------------------------------------------------- To unsubscribe, e-mail: selenium-ide-users-unsubscribe@... For additional commands, e-mail: selenium-ide-users-help@... |
|
|
Re: *Timed out after 30000ms* error occuring in selenium IDEnice to see your reply
*Open command waits until the complete page is loaded including images, so it may timeout if you are opening a slow loading page. You can change the timeout value by inserting setTimeout command.* In the above conversation where can i insert *setTimeout command* in selenium IDE to chnage the time out value. can i insert via options-->options-->Default time out value of recorded command here i chnaged the time out value to 45000, is it correct? Raghavan. --------------------------------------------------------------------- Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=12629&messageID=41098#41098 --------------------------------------------------------------------- To unsubscribe, e-mail: selenium-ide-users-unsubscribe@... For additional commands, e-mail: selenium-ide-users-help@... |
|
|
Re: *Timed out after 30000ms* error occuring in selenium IDETimout and wait functions are not working in Selenium IDE.
Is it really working by you? When yes, please help. |
|
|
Re: *Timed out after 30000ms* error occuring in selenium IDEthey work fine for me. try this out -
<tr> <td>setTimeout</td> <td>1000</td> <td></td> </tr> <tr> <td>open</td> <td>http://www.marketwatch.com</td> <td></td> </tr> btw - it is "setTimeout", not "Timeout". thanks.
|
| Free embeddable forum powered by Nabble | Forum Help |