- suleeActive particpant
- Posts : 14
Join date : 2010-12-27
The connection has timed out
Tue Mar 15, 2011 6:46 pm
Hi all,
I am using java client driver and eclipse java ee helios, my setup is complete to run selenese test cases.
In fact i connect to some sites, and i cannot connect to some sites. For instance the test below runs correctly:
import com.thoughtworks.selenium.*;
import java.util.regex.Pattern;
public class google extends SeleneseTestCase {
public void setUp() throws Exception {
//setUp("http://www.google.com/", "*chrome");
selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://172.31.206.23");
selenium.start();
}
public void testUntitled() throws Exception {
selenium.open("/");
selenium.waitForPageToLoad("30000");
}
}
Whereas if change the base url to www.google.com, I cannot connect and I got browser message as below:
The connection has timed out
The server at www.google.com is taking too long to respond.
And the console error message is:
Got result: Timed out after 30000ms on session d359......
Could anyone tell me reason for that? Because i cannot test the we site i am suppose to do. Thanks in advance.
I am using java client driver and eclipse java ee helios, my setup is complete to run selenese test cases.
In fact i connect to some sites, and i cannot connect to some sites. For instance the test below runs correctly:
import com.thoughtworks.selenium.*;
import java.util.regex.Pattern;
public class google extends SeleneseTestCase {
public void setUp() throws Exception {
//setUp("http://www.google.com/", "*chrome");
selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://172.31.206.23");
selenium.start();
}
public void testUntitled() throws Exception {
selenium.open("/");
selenium.waitForPageToLoad("30000");
}
}
Whereas if change the base url to www.google.com, I cannot connect and I got browser message as below:
The connection has timed out
The server at www.google.com is taking too long to respond.
And the console error message is:
Got result: Timed out after 30000ms on session d359......
Could anyone tell me reason for that? Because i cannot test the we site i am suppose to do. Thanks in advance.
Re: The connection has timed out
Thu Mar 17, 2011 8:08 pm
hi,
use custom wait command in java instead of using selenium command.
create one function which take parameter to wait up to how much seconds and used that every where you want to wait.
best of luck
use custom wait command in java instead of using selenium command.
create one function which take parameter to wait up to how much seconds and used that every where you want to wait.
best of luck
- gaurang033Active particpant
- Posts : 13
Join date : 2011-03-19
Re: The connection has timed out
Sat Mar 19, 2011 8:04 pm
I am using following function...
public void waitUntilElementPresent(String xpath, int timpout){
int count=0;
while(selenium.isElementPresent(xpath)){
Thread.sleep(1000); //wait for minute
if(60*count++ > timout)
break;
}
}
public void waitUntilElementPresent(String xpath, int timpout){
int count=0;
while(selenium.isElementPresent(xpath)){
Thread.sleep(1000); //wait for minute
if(60*count++ > timout)
break;
}
}
- auto_ashish1Active particpant
- Posts : 21
Join date : 2011-03-10
Re: The connection has timed out
Tue Apr 05, 2011 11:58 pm
You can add your own user-extension.js to change the default timeout of 30000 MS
Regards
Ashish
itsthakur@gmail.com
91-9888179981
For online Selenium training go to my website- www.sejsoft.com
Regards
Ashish
itsthakur@gmail.com
91-9888179981
For online Selenium training go to my website- www.sejsoft.com
Permissions in this forum:
You cannot reply to topics in this forum