合肥人真帅 发表于 2017-5-18 16:41:47

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();
      }
}            
代码截图如下:

运行后如下:





finomy 发表于 2017-5-18 17:35:02

selenium1{:4_87:},你确定selenium1支持你的浏览器么

合肥人真帅 发表于 2017-5-18 18:01:13

我用的是selenium-server-standalone-2.53.0.jar
火狐版本45.9

合肥人真帅 发表于 2017-5-18 18:01:57

我用的是selenium-server-standalone-2.53.0.jar
火狐浏览器是45.9 版本

清晨一缕阳光 发表于 2017-5-19 08:56:34

还是建议是selenium2或者selenium3。不要使用selenium-server-standalone.
页: [1]
查看完整版本: Eclipse运行Selenium脚本,打开火狐浏览器,总是跳转到欢迎页面