mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
Delete columns CustomerEmail, OrderId, ItemCode (#6170)
This commit is contained in:
@@ -90,7 +90,15 @@ namespace BTCPayServer.Tests
|
||||
{
|
||||
if (amount is not null)
|
||||
{
|
||||
Driver.FindElement(By.Id("test-payment-amount")).Clear();
|
||||
try
|
||||
{
|
||||
Driver.FindElement(By.Id("test-payment-amount")).Clear();
|
||||
}
|
||||
// Sometimes the element is not available after a window switch... retry
|
||||
catch (StaleElementReferenceException)
|
||||
{
|
||||
Driver.FindElement(By.Id("test-payment-amount")).Clear();
|
||||
}
|
||||
Driver.FindElement(By.Id("test-payment-amount")).SendKeys(amount.ToString());
|
||||
}
|
||||
Driver.WaitUntilAvailable(By.Id("FakePayment"));
|
||||
|
||||
Reference in New Issue
Block a user