|
我通过Eclipse运行下面一段简单的脚本:
package com.example.tests;
import java.util.regex.Pattern;
import com.thoughtworks.selenium.*;
public class NewTest extends SeleneseTestCase {
public void testsetUp() throws Exception {
setUp("http://www.google","*firefox");
}
}
结果弹出一个script error的提示框。
打出的log居然仍然是用IE打开的:
11:17:21.933 INFO - Command request: getNewBrowserSession[*iexplore, http://localhost:4444, ] on session null
11:17:21.933 INFO - creating new remote session
11:17:21.964 INFO - Allocated session edfbf8e556f647f8b9d9b1c2f30010a2 for http://localhost:4444, launching...
11:17:22.058 INFO - Launching Embedded Internet Explorer...
11:17:23.088 INFO - Launching Internet Explorer HTA...
因为在IE8里出现了这样的问题,所以我将浏览器改成了firefox,没想到这个问题还是出现了。。
大家有出现过这样的问题吗?
[ 本帖最后由 my_way 于 2010-4-27 11:20 编辑 ] |
|