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.
我正在开发一个 Java 风格的 Winium 项目。
如何设置默认超时?默认的很长。
谢谢
我总是把这种方式放在一个名为 AbstractPageObject 的类中,或者你喜欢这样称呼自己。
public static void sleep() { try { Thread.sleep(4000); } catch (InterruptedException e) { e.printStackTrace(); }; }