Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Jubula 8.7.1。我正在使用客户端 api 用 Java 编写测试。测试运行良好,但最终应用程序没有关闭。我试过 aut.disconnect(); 但这会断开与 AUT 的连接并且不会关闭应用程序。我正在寻找硒中的 driver.close() 之类的东西。
这应该可以很好地关闭应用程序: AUTIdentifier autId= agent.startAUT(someConfiguration); agent.stopAUT(autId);
AUTIdentifier autId= agent.startAUT(someConfiguration); agent.stopAUT(autId);
agent 是您设置的 AutAgent,而 someConfiguration 是您用于启动 AUT 的配置。