Eclipse IDE と testNG フレームワークを使用しています。firefox を指定しましたが、テスト ランナーは Firefox で開き、テストは IE で実行されます。
これが私のコードです:
public class Flipkart extends SeleneseTestNgHelper {
@BeforeTest
public void setup()
{
selenium = new DefaultSelenium("localhost" ,4444, "*firefox", "http://www.flipkart.com");
selenium.start();
selenium.windowMaximize();
}
@Test
public void testFlipkart() throws Exception {
selenium.open("http://www.flipkart.com");
verifyEquals(selenium.getTitle(), "Online Shopping India | Buy Books, Mobiles, Cameras, Laptops, Electronics, Accessories, Lifestyle Products | Flipkart.com");
verifyTrue(selenium.isTextPresent("Featured:"));
}
}
誰もが同じ問題に直面していますか。コードの問題点を教えてください。