Eclipse运行Selenium脚本,打开火狐浏览器,总是跳转到欢迎页面
本帖最后由 合肥人真帅 于 2017-5-18 16:49 编辑package com.example.tests;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class B {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox D:/firefox/firefox.exe", "https://www.baidu.com/");
selenium.start();
}
@Test
public void testB() throws Exception {
selenium.open("/");
selenium.click("id=kw");
selenium.click("link=学术");
selenium.waitForPageToLoad("30000");
selenium.click("//form[@id='form']/span");
selenium.type("id=kw", "测试");
selenium.click("id=lg");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
代码截图如下:
运行后如下:
selenium1{:4_87:},你确定selenium1支持你的浏览器么 我用的是selenium-server-standalone-2.53.0.jar
火狐版本45.9 我用的是selenium-server-standalone-2.53.0.jar
火狐浏览器是45.9 版本 还是建议是selenium2或者selenium3。不要使用selenium-server-standalone.
页:
[1]