Now, I tried to get similar code to work with
www.walmart.com.
Unfortunately, it doesn't work. I get timeout in the
selenium.open("/") call. Here is my code. The same code works with
*iexplore option.
public class NewTest extends SeleneseTestCase {
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*custom C:\
\Program Files\\360\\360se3\\360se.exe", "
http://www.walmart.com/");
selenium.start();
selenium.setTimeout("120000");
}
public void testNew() throws Exception {
selenium.open("/");
selenium.type("searchText", "gps");
selenium.click("search_btn");
selenium.waitForPageToLoad("120000");
assertTrue(selenium.isTextPresent("gps"));