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 Apr 22, 2022. It is now read-only.
This test is a bit flaky due to a race condition. The pages load the script with defer/async. Although most actions in the test include a wait to ensure the script loads prior to proceeding, the driver.findElement(By.id("custom")).click() action has no such guard. This means it presumably can sometimes run prior to the script loading. In this situation the event behind that action won't be delivered and the test will fail.
The fix for this bug is to ensure the divolte JS module is available before the action fires.
The text was updated successfully, but these errors were encountered:
This test is a bit flaky due to a race condition. The pages load the script with defer/async. Although most actions in the test include a wait to ensure the script loads prior to proceeding, the
driver.findElement(By.id("custom")).click()
action has no such guard. This means it presumably can sometimes run prior to the script loading. In this situation the event behind that action won't be delivered and the test will fail.The fix for this bug is to ensure the
divolte
JS module is available before the action fires.The text was updated successfully, but these errors were encountered: