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
With Edge 134 (tested 134.0.3124.51, .66, .68, and .93) .Click() method calls on <input> or <button> which trigger navigation via POST form submission sometimes (~20%?) return before page navigation completes. This makes automation significantly more difficult and can cause issues due to stale elements if care is not taken to ensure navigation completes prior to subsequent use. Downgrading to Edge 133.0.3065.92 has been an effective workaround for us.
The reproduction submits an HTML form with unique input and confirms that each response includes the submitted input. It runs without error using Edge 133 and fails after ~5 attempts with Edge 134 with StaleElementException/StaleElementReferenceError (due to Click() returning before navigation had completed).
Thanks,
Kevin
The text was updated successfully, but these errors were encountered:
With Edge 134 (tested 134.0.3124.51, .66, .68, and .93)
.Click()
method calls on<input>
or<button>
which trigger navigation via POST form submission sometimes (~20%?) return before page navigation completes. This makes automation significantly more difficult and can cause issues due to stale elements if care is not taken to ensure navigation completes prior to subsequent use. Downgrading to Edge 133.0.3065.92 has been an effective workaround for us.The issue was reported in to Selenium in SeleniumHQ/selenium#15404 and Chromium in https://issues.chromium.org/issues/405607581 and is being discussed on the selenium-users mailing list. I couldn't find an open issue here and thought one might be useful.
I've created a minimal reproduction to demonstrate this issue using Selenium from either C# or Node.js: https://gist.github.com/kevinoid/29510f6544d7201f4e2c25e8a871a61a
The reproduction submits an HTML form with unique input and confirms that each response includes the submitted input. It runs without error using Edge 133 and fails after ~5 attempts with Edge 134 with
StaleElementException
/StaleElementReferenceError
(due toClick()
returning before navigation had completed).Thanks,
Kevin
The text was updated successfully, but these errors were encountered: