3

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 ?

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

1 Answers1

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