我已经在Junit中编写了一段代码。我需要运行它而不会蚀。有什么建议我该怎么做?
答案 0 :(得分:0)
是的,您可以选择在命令行中运行测试用例
示例:
在运行mvn全新安装以构建应用程序时, 同样,您也可以通过使用命令来运行测试用例。
it("should edit dropdown", () => {
let country = element(by.id("country"));
let state = element(by.id("state_select"));
countryAndStateSelection('United States', 'Alaska');
// add your expect here
function countryAndStateSelection(countryToSelect, stateToSelect) {
selectCountry(countryToSelect);
selectState(stateToSelect);
}
function selectCountry(countryToSelect) {
country.click();
element(by.cssContainingText('#country option'), countryToSelect).click();
}
function selectState(stateToSelect) {
state.click();
element(by.cssContainingText('#state_select option'), stateToSelect).click();
}
});
答案 1 :(得分:0)
自 Java Application 和 JUnit 启动配置中的Eclipse 2018-09起,就有一个按钮 Show Command Line < / em> 。