feat: test(e2e,playwright): Landing (#52039)

Co-authored-by: Aidan <aidanlowson@gmail.com>
This commit is contained in:
Aidan
2023-10-27 10:24:20 +01:00
committed by GitHub
parent 25b797f7d0
commit ac8616eda2
+7
View File
@@ -125,3 +125,10 @@ test('Has FAQ section', async () => {
const faqs = page.getByTestId(landingPageElements.faq);
await expect(faqs).toHaveCount(9);
});
test("Has CTA Get Started It's free buttons", async () => {
const ctaButtons = page.getByRole('link', {
name: "Get started (it's free)"
});
await expect(ctaButtons).toHaveCount(4);
});