Closed artemave closed 8 years ago
Really? I'm sure that's not the intention..
@artemave click will wait for the element to appear before clicking on it. It will never try and do anything until there is an element - same goes for any of the other actions. The docs probably don't make this clear but you can adjust the timeouts and try interval:
does that help?
Ah, I was passing timeout
to find
, rather than click
. That is not supported, which was a bit counterintuitive, but that is ok.
find will never timeout as it doesn't actually do anything. find simple adds selectors to be executed when you call an action such as click/typeIn etc.
Otherwise it seems like I need to
shouldHave
before I can safelyclick
.