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
var browser = AqualityServices.Browser;
browser.GoTo("some-url");
await browser.DevTools.EnablePerfomanceMonitoring();
var submitBtn = AqualityServices.Get<IElementFactory>().GetButton(By.Id("some-id"), "Telecash payment submit");
// driver will be crashed on the next line
submitBtn.ClickAndWait();
On the line submitBtn.ClickAndWait(); the driver is crashing and it looks like the second attempt is trying to re-create driver.
It would be much nicer to have an exception in such cases. Could you please take a look?
The text was updated successfully, but these errors were encountered:
I have following code:
On the line
submitBtn.ClickAndWait();
the driver is crashing and it looks like the second attempt is trying to re-create driver.It would be much nicer to have an exception in such cases. Could you please take a look?
The text was updated successfully, but these errors were encountered: