mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 09:58:13 +01:00
Fix webhooks test
Re-adds two classes used by the tests, that got removed in #3716.
This commit is contained in:
parent
b67d3a504b
commit
f1029fceff
2 changed files with 3 additions and 2 deletions
|
@ -968,7 +968,7 @@ namespace BTCPayServer.Tests
|
||||||
server.Done();
|
server.Done();
|
||||||
|
|
||||||
TestLogs.LogInformation("Let's see if we can delete store with some webhooks inside");
|
TestLogs.LogInformation("Let's see if we can delete store with some webhooks inside");
|
||||||
s.GoToStore(StoreNavPages.General);
|
s.GoToStore();
|
||||||
s.Driver.FindElement(By.Id("DeleteStore")).Click();
|
s.Driver.FindElement(By.Id("DeleteStore")).Click();
|
||||||
s.Driver.WaitForElement(By.Id("ConfirmInput")).SendKeys("DELETE");
|
s.Driver.WaitForElement(By.Id("ConfirmInput")).SendKeys("DELETE");
|
||||||
s.Driver.FindElement(By.Id("ConfirmContinue")).Click();
|
s.Driver.FindElement(By.Id("ConfirmContinue")).Click();
|
||||||
|
|
|
@ -344,6 +344,7 @@
|
||||||
<a asp-action="WebhookDelivery"
|
<a asp-action="WebhookDelivery"
|
||||||
asp-route-invoiceId="@Model.Id"
|
asp-route-invoiceId="@Model.Id"
|
||||||
asp-route-deliveryId="@delivery.Id"
|
asp-route-deliveryId="@delivery.Id"
|
||||||
|
class="delivery-content"
|
||||||
target="_blank">
|
target="_blank">
|
||||||
@delivery.Id
|
@delivery.Id
|
||||||
</a>
|
</a>
|
||||||
|
@ -365,7 +366,7 @@
|
||||||
<td class="text-end">
|
<td class="text-end">
|
||||||
<button id="#redeliver-@delivery.Id"
|
<button id="#redeliver-@delivery.Id"
|
||||||
type="submit"
|
type="submit"
|
||||||
class="btn btn-link p-0">
|
class="btn btn-link p-0 redeliver">
|
||||||
Redeliver
|
Redeliver
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue