• Java+Selenium环境搭建


    初学者---简单的selenium环境搭建:

    1. 安装JAVA环境

    2.下载eclipse

    3.下载firefox (不要最高版本,容易出现selenium不兼容问题)

    4. 下载selenium需要的jar包下载地址:http://pan.baidu.com/s/1gdVqOAf

    5. 打开eclipse,创建一个javaproject,如下截图:

    测试代码如下:

    package demo;

    import java.io.File;

    import org.openqa.selenium.By;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.WebDriver.Navigation;

    import org.openqa.selenium.firefox.FirefoxDriver;

    public class FrieFoxDriverTest {
    public static void main(String[] args) {

    // TODO Auto-generated method stub
    System.out.println("start firefox browser...");
    //如果火狐浏览器没有默认安装在C盘,需要制定其路径
    System.setProperty("webdriver.firefox.bin","D:/Program Files (x86)/Mozilla Firefox/firefox.exe");
    WebDriver driver = new FirefoxDriver();
    driver.get("http://www.baidu.com");

    System.out.println("start firefox browser succeed...");
    // 获取页面元素
    WebElement input = driver.findElement(By.id("kw"));
    WebElement button = driver.findElement(By.id("su"));

    // 搜索Claudia值
    input.sendKeys("Claudia博客");

    button.click();
    }

    }

  • 相关阅读:
    MongoDB基础--数据库和集合基本操作
    MongoDB索引
    Spring 单元测试
    MongoDB创建索引
    MongoDB数据更新
    MongoDB基本写入和读出操作
    MongBD-windows 64-bit 安装
    Maven报错
    Converter使用及其原理
    volatile到底解决了什么问题?
  • 原文地址:https://www.cnblogs.com/claudia/p/Claudia.html
Copyright © 2020-2023  润新知