TA的每日心情 | 奋斗 2015-5-29 11:16 |
---|
签到天数: 32 天 连续签到: 1 天 [LV.5]测试团长
|
本帖最后由 littlevine68 于 2016-1-14 13:17 编辑
求救,运行第一个selenium脚本,启动浏览器后就没反应了,是selenium start()没法启动?提示见图,后面就没反应了
package seven.com.selenium2;
import com.thoughtworks.selenium.*;
public class LoginDemo {
public static void main(String[] args) {
// TODO Auto-generated method stub
DefaultSelenium selenium = new DefaultSelenium("localhost",4444,"*iexplore C:/Program Files (x86)/Internet Explorer/iexplore.exe","http://www.google.com");
selenium.start();
//第一步开始
selenium.open("https://passport.jd.com/new/login.aspx");
System.out.println("检查是否成功进入登录页面:"+"http://safe.jd.com/findPwd/index.action".equals(selenium.getLocation()));
|
|