我正在构建一个应用程序,通过提供分步说明帮助用户浏览网站。 说明以对话框的形式给出。我正在使用Java Swing来创建GUI对话框。
这是启动webdriver的主要类。
public class initialDriver{
public static WebDriver driver;
public static void main(String[] args) throws IOException, InterruptedException{
testCases.simpleGoogle();
testCases.wiki();
}
}
控制传递给这个类。这包括各个测试用例。每个测试用例都会为GUI发送争论。
public class testCases{
public static void simpleGoogle() throws IOException, InterruptedException
{
initialDriver.driver = new FirefoxDriver();
initialDriver.driver.get("https://www.google.com");
String message = "Enter search term,Click search button,Check the results";
new StepMessage("GoogleSearch",message);
}
public static void wiki() throws IOException, InterruptedException
{
initialDriver.driver = new FirefoxDriver();
initialDriver.driver.get("https://www.wikipedia.org");
String message = "Enter 'Solar Energy',Click search,Check the page";
new StepMessage("WikipediaSearch",message);
}
}
这是GUI类。点击'确定',它会打开另一个GUI框架,该框架接收用户输入'测试用例 - 通过或失败'
public class StepMessage extends JFrame {
private JPanel contentPane;
public static javax.swing.JTextArea msgArea;
public String message;
public String nameoftheTest;
public static javax.swing.JButton btnOk;
/**
* Create the frame.
*/
public StepMessage(String Testname,String message) {
nameoftheTest = Testname;
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 226);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
msgArea = new JTextArea();
msgArea.setBounds(12, 13, 397, 68);
contentPane.add(msgArea);
msgArea.setEditable(false);
StepMessage.msgArea.setText(message);
btnOk = new JButton("OK");
btnOk.setBounds(175, 135, 97, 30);
contentPane.add(btnOk);
btnOk.addActionListener(new java.awt.event.ActionListener()
{
public void actionPerformed(java.awt.event.ActionEvent evt)
{
OkBtnActionPerformed(evt);
}
});
}
public void OkBtnActionPerformed(java.awt.event.ActionEvent evt)
{
this.dispose();
PassFail frame2 = new PassFail(nameoftheTest);
frame2.setTitle("Test Pass or Fail");
frame2.setVisible(true);
}
}
我想使用JUnit运行多个此类测试。每个测试必须导航到网站,打开GUI并等待用户输入。然后控件应该传回testCases类并执行下一个测试。
如何做到这一点?
答案 0 :(得分:0)
这可以使用CompletableFuture(如果不可用,Guava的SettableFuture)来完成。写下测试如下:
@Test
public void testGoogle() throws Exception {
CompletableFuture<Void> future = new CompletableFuture<>();
testCases.simpleGoogle(future);
future.get();
}
并通过UI传递未来,以便在事件处理程序中可用。然后根据测试是通过还是失败来调用future.complete(null)
或future.completeExceptionally(new AssertionError("Failed"))
。