You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
We do auto-test using behat on Drupal 8, some Ajax calls take a lot of time to finish (> 6s) like when we upload CSV file to create a content, it would be nice if we have the possibility to configure the wait time of the iWaitForAjax function in order to increase or decrease it when we need.
We can have this time wait configuration in behat.yml for example.
We suggest also to add "attach" to afterJavascriptStep because in drupal we have some attach witch generate Ajax calls.
```
$text = $event->getStep()->getText();
if (preg_match('/(follow|press|click|submit|attach)/i', $text)) {
$this->iWaitForAjaxToFinish();
The text was updated successfully, but these errors were encountered:
We do auto-test using behat on Drupal 8, some Ajax calls take a lot of time to finish (> 6s) like when we upload CSV file to create a content, it would be nice if we have the possibility to configure the wait time of the iWaitForAjax function in order to increase or decrease it when we need.
We can have this time wait configuration in behat.yml for example.
We suggest also to add "attach" to afterJavascriptStep because in drupal we have some attach witch generate Ajax calls.
$text = $event->getStep()->getText();
if (preg_match('/(follow|press|click|submit|attach)/i', $text)) {
$this->iWaitForAjaxToFinish();
The text was updated successfully, but these errors were encountered: