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);