我想使用 Selenium 测试一个智能 GWT 应用程序。为此,我需要在 IDE 中添加 1. user-extensions.js 2. user-extensions-ide.js。这为在页面上定位 GWT 元素提供了额外的 scLocators
现在如果我想使用Java测试上面的页面,那么我将在代码中的哪里添加这些js文件
我想使用 Selenium 测试一个智能 GWT 应用程序。为此,我需要在 IDE 中添加 1. user-extensions.js 2. user-extensions-ide.js。这为在页面上定位 GWT 元素提供了额外的 scLocators
现在如果我想使用Java测试上面的页面,那么我将在代码中的哪里添加这些js文件
我解决这个问题的方法是使用 SeleniumServer 方法,它允许我从 java 代码中指定我的扩展文件。
一个有效的 SmartGWT 示例是:
public class Example {
SeleniumServer server = null;
Selenium selenium = null;
HttpCommandProcessor proc = null;
@Before
public void setUp() throws Exception {
RemoteControlConfiguration config = new RemoteControlConfiguration();
config.setUserExtensions(new File("bin/selenium/user-extensions.js"));
server = new SeleniumServer(config);
server.boot();
proc = new HttpCommandProcessor("localhost",
4444,
"*firefox",
"http://test");
selenium = new DefaultSelenium(
proc);
selenium.start();
selenium.open("http://test");
}
@Test
public String justATest() {
execCommand("waitForElementClickable", "scLocator=//Window[ID=\"errorWindow\"]/item[0][Class=\"Label\"]/");
String elementTest = selenium.getText("scLocator=//Window[ID=\"errorWindow\"]/item[0][Class=\"Label\"]/");
assertEquals(elementTest, "lorem");
}
protected String execCommand(String command, String locator) {
String[] locatorArg = {locator};
return proc.doCommand(command, locatorArg);
}
@After
public void stopSelenium() {
System.out.println("in after hook");
if (selenium != null) {
selenium.deleteAllVisibleCookies();
selenium.stop();
}
if (server != null) {
server.stop();
}
System.out.println("after after hook");
}
}