51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1530|回复: 0
打印 上一主题 下一主题

Selenium驱动Firefox浏览器

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2018-1-24 15:58:34 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 yjlch1016 于 2018-1-24 16:35 编辑

Selenium驱动Firefox浏览器
用Maven构建Selenium依赖:

<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>3.8.1</version>
</dependency>

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class Firefox {
    public static void main(String[] args) throws InterruptedException {
        System.setProperty("webdriver.firefox.marionette", "src/main/resourcec/geckodriver.exe");
        //指定Firefox浏览器驱动的路径,使用相对路径
        String baiduHomePage;
        baiduHomePage = "https://www.baidu.com/";
        //百度首页的地址

        WebDriver driver;
        //声明一个WebDriver
        driver = new FirefoxDriver();
        driver.manage().window().maximize();
        //使浏览器窗口最大化
        driver.get(baiduHomePage);
        //打开百度
        Thread.sleep(2000);
        //强制线程等待2秒钟
        assert driver.getTitle().equals("百度一下,你就知道");
        //断言页面标题

        driver.findElement(By.xpath(".//*[@id='kw']")).sendKeys("Selenium");
        //在百度搜索输入框输入“Selenium”
        driver.findElement(By.xpath(".//*[@id='su']")).click();
        //点击搜索按钮
        Thread.sleep(2000);
        assert driver.getTitle().equals("Selenium_百度搜索");

        driver.close();
        //关闭浏览器窗口
        driver.quit();
        //结束dirver
    }
}

需要注意的是,
Firefox浏览器不能是官网上最新的版本,
否则会出现启动了浏览器,
却无法打开网址的情况;
我用的版本是:
Firefox-v52.5.3-win64
驱动的版本是:
geckodriver-v0.19.1-win64

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-18 00:35 , Processed in 0.063467 second(s), 24 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表