51Testing软件测试论坛

标题: 大神帮帮忙 [打印本页]

作者: 小飞侠945    时间: 2015-8-3 16:31
标题: 大神帮帮忙
最近自学selenium自动化测试,按照网上的教程搭建了一个测试环境(Java+eclipse),满怀激动地测试了一下,录制的网页很简单,就是打开百度,搜索“你好”。
代码如下:
  1. package com.test;

  2. import com.thoughtworks.selenium.*;
  3. import org.junit.After;
  4. import org.junit.Before;
  5. import org.junit.Test;

  6. public class test {
  7.         private Selenium selenium;

  8.         @Before
  9.         public void setUp() throws Exception {
  10.                 selenium = new DefaultSelenium("localhost", 4444, "*iexplore", "https://www.baidu.com/");
  11.                 selenium.start();
  12.         }

  13.         @Test
  14.         public void Test() throws Exception {
  15.                 selenium.open("/");
  16.                 selenium.click("id=kw");
  17.                 selenium.type("id=kw", "你好");
  18.                 selenium.click("id=su");
  19.         }

  20.         @After
  21.         public void tearDown() throws Exception {
  22.                 selenium.stop();
  23.         }
  24. }
复制代码

但是在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