Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating broken link #1118

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<label class="form-title mb-0" for="level23DataAuthorisation">Level 2/3 Data</label>
<small id="level23DataAuthorisationHelp" class="form-text mb-1">
2/3 Data gives you interchange discounts on US domestic transactions. Your shoppers will also see additional data about their purchases on their credit card statements.
<a class="text-primary" href="https://www.adyen.help/hc/en-us/articles/5196215373596" target="_blank">Check if your business is eligible for Level 2/3 Data.</a>
<a class="text-primary" href="https://ca-live.adyen.com/ca/ca/contactUs/support.shtml" target="_blank">Check if your business is eligible for Level 2/3 Data.</a>
</small>
<div class="radio-buttons">
<div class="form-check form-check-inline">
Expand Down
2 changes: 1 addition & 1 deletion tests/playwright/pages/PaymentMethodsPage.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default class PaymentMethodsPage {

submitSimulator = async (testSuccess) => {
await this.page.locator('button[data-testid="payment-action-button"]').click();
await this.page.locator('button[data-testid="ideal-box-bank-item-TESTNL2A"]').click();
await this.page.locator('div[id="bank-item-TESTNL2A"]').click();
const actionButton = testSuccess ? this.page.getByRole('button', { name: 'Success', exact: true }) : this.page.getByRole('button', { name: 'Cancellation', exact: true });
await actionButton.click();
};
Expand Down
Loading