51Testing软件测试论坛
标题:
大神帮帮忙
[打印本页]
作者:
小飞侠945
时间:
2015-8-3 16:31
标题:
大神帮帮忙
最近自学selenium自动化测试,按照网上的教程搭建了一个测试环境(Java+eclipse),满怀激动地测试了一下,录制的网页很简单,就是打开百度,搜索“你好”。
代码如下:
package com.test;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class test {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*iexplore", "https://www.baidu.com/");
selenium.start();
}
@Test
public void Test() throws Exception {
selenium.open("/");
selenium.click("id=kw");
selenium.type("id=kw", "你好");
selenium.click("id=su");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
复制代码
但是在eclipse上弹不出百度网页来,弹出脚本错误的对话框。C:\Users\media\Desktop\捕获.png
往懂行的帮帮忙
作者:
小飞侠945
时间:
2015-8-3 16:33
作者:
小飞侠945
时间:
2015-8-3 16:34
错误提示如下
作者:
小飞侠945
时间:
2015-8-3 16:35
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2