com.thoughtworks.selenium.SeleniumException:错误:命令执行失败

时间:2013-05-02 14:29:51

标签: webdriver selenium-webdriver selenium-rc

com.thoughtworks.selenium.SeleniumException:错误:命令执行失败。请从https://groups.google.com/forum/#!forum/selenium-users搜索用户组,以获取日志窗口中的错误详细信息。错误消息是:对象不支持属性或方法'createEvent'

我收到了上述错误,有人请帮我解决这个问题。

帮助将不胜感激。

SeleniumServer server = new SeleniumServer(rcc);
DefaultSelenium selenium = new DefaultSelenium("localhost", 1212, "*iexploreproxy", "http://");

server.start();
selenium.start();
selenium.windowMaximize();
selenium.open("URL");
selenium.waitForPageToLoad("25000");
selenium.windowMaximize();
selenium.type("id=lgnLogin_UserName", "dy4cl");
selenium.type("id=lgnLogin_Password", "Test1234");
selenium.click("lgnLogin_LoginButton");
selenium.waitForPageToLoad("10000");
String msg = selenium.getText("//table[@id='lgnLogin']/tbody/tr/td/table/tbody/tr[4]/td");
System.out.println(msg);

1 个答案:

答案 0 :(得分:1)

将Selenium Server文件升级到2.32.0。您可以从here

下载

如果您仍然面临同样的问题,请告诉我。