博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium RC 环境搭建(eclipse)
阅读量:5011 次
发布时间:2019-06-12

本文共 1218 字,大约阅读时间需要 4 分钟。

环境搭建参考:  非常详细!晕乎晕乎了两天,看到这边帖子,终于搭起来了。

关于Selenium RC的原理,还是比较详细。 虽然我只看懂了组成。

按照上面的步骤,搭建后的工程:

 

一个简单的Case,不完整,纯粹为了测试环境是否搭成功。

package com.dhy.selenium.test;import java.net.URL;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.firefox.FirefoxDriver;import org.openqa.selenium.remote.RemoteWebDriver;import org.openqa.selenium.remote.DesiredCapabilities;public class Case1 {    public static void main(String[] args) throws Exception{//        WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),//                DesiredCapabilities.firefox());         WebDriver driver = new FirefoxDriver();         driver.get("http://2j.isurveylink.com/s/183/?test_mode=1");                WebElement element = driver.findElement(By.id("start_btn"));        element.click();                try {            Thread.sleep(3000);        } catch (InterruptedException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }        System.out.println("Page title is : " + driver.getTitle());                driver.quit();    }}

 

这里的语法啊、类啊什么的,需要慢慢研究。

转载于:https://www.cnblogs.com/mimosading/p/3461864.html

你可能感兴趣的文章
wyh的物品(二分)
查看>>
12: xlrd 处理Excel文件
查看>>
综合练习:词频统计
查看>>
中文url编码乱码问题归纳整理一
查看>>
Cesium应用篇:3控件(3)SelectionIndicator& InfoBox
查看>>
58. Length of Last Word(js)
查看>>
前端面试题汇总(持续更新...)
查看>>
如何成为F1车手?
查看>>
QT自定义消息
查看>>
Save (Not Permitted) Dialog Box
查看>>
装饰模式(Decorator)
查看>>
任务13:在Core Mvc中使用Options
查看>>
利用Excel 2010数据透视图实现数字的可视化的图形直观展示
查看>>
Sort Colors
查看>>
iview树的修改某个节点,树刷新后自动展开你刚才展开的所有节点
查看>>
oracle服务起不来以及无法监听问题解决
查看>>
Mvc--Html.ActionLink()的用法
查看>>
delphi 基础书籍推荐
查看>>
《面向对象程序设计》2018年春学期寒假及博客作业总结
查看>>
iOS开发UI之KVC(取值/赋值) - KVO (观察某个对象的某个属性的改变)
查看>>