51Testing软件测试论坛

标题: Eclipse运行Selenium脚本,打开火狐浏览器,总是跳转到欢迎页面 [打印本页]

作者: 合肥人真帅    时间: 2017-5-18 16:41
标题: 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();
        }
}              
代码截图如下:
[attach]106238[/attach]
运行后如下:
[attach]106237[/attach]





作者: finomy    时间: 2017-5-18 17:35
selenium1,你确定selenium1支持你的浏览器么
作者: 合肥人真帅    时间: 2017-5-18 18:01
我用的是selenium-server-standalone-2.53.0.jar
火狐版本45.9
作者: 合肥人真帅    时间: 2017-5-18 18:01
我用的是selenium-server-standalone-2.53.0.jar
火狐浏览器是45.9 版本
作者: 清晨一缕阳光    时间: 2017-5-19 08:56
还是建议是selenium2或者selenium3。不要使用selenium-server-standalone.




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2