- Issue created by @mstrelan
- 🇦🇺Australia mstrelan
Apologies, the MR that had the random fail was older than 🐛 [random test failure] FilterEntityReferenceTest Active and did not have the fix.
🐛 [random test failure] FilterEntityReferenceTest Active resolved some random test fails in FilterEntityReferenceTest, but there are still more.
Specifically we get a stale element reference exception for the click()
below:
// Test the exposed filter options show up correctly.
$assert->waitForField('options[expose_button][checkbox][checkbox]');
$page->findField('options[expose_button][checkbox][checkbox]')->click();
https://git.drupalcode.org/issue/drupal-3510582/-/jobs/4955317#L368
Possibly need to wait for an ajax request after the previous line:
$page->find('xpath', "//*[contains(text(), 'Apply and continue')]")->press();
We should also update existing assertWaitOnAjaxRequest
calls to assertExpectedAjaxRequest
.
Active
11.0 🔥
views_ui.module
Apologies, the MR that had the random fail was older than 🐛 [random test failure] FilterEntityReferenceTest Active and did not have the fix.