伙计们帮助我了解超时的用法。该文档给出了很多关于它们的信息:
popTimeout- Retrieves the previous timeout value from a stack, restores it as the current timeout value, and returns it.
pushTimeout - Stores the current timeout value on a stack and sets a new timeout value.
他们还提供了一些代码:
target = UIATarget.localTarget();
target.pushTimeout(2);
// attempt element access
target.popTimeout();
但我不完全了解如何以及何时使用它们。任何人都可以举个例子吗?