I was faced with an issue, when used [WaitForJQueryAjax]
trigger. The thing is, too much time need to wait for. Is it possible to extend the time frame for this trigger ?
Asked
Active
Viewed 227 times
3

Dariusz Woźniak
- 9,640
- 6
- 60
- 73

Sergei Kazantsev
- 67
- 4
1 Answers
2
Good catch. I will definitely add Timeout
property to [WaitForJQueryAjax]
and similar triggers in the next 0.17.0 version of Atata.
For now, you can extend global retry timeout:
AtataContext.Configure().
// ...
UseRetryTimeout(TimeSpan.FromSeconds(30)). // Default value is 5 seconds.
Build();

Yevgeniy Shunevych
- 1,136
- 6
- 11
-
1Thanks a lot Yevgeniy. I will wait for updates. For the record, the Atata is a masterpiece)) Keep it up! – Sergei Kazantsev Feb 28 '18 at 13:22
-
Thanks for the kind words. – Yevgeniy Shunevych Feb 28 '18 at 13:30