import { test, expect } from '@playwright/test';

test('Adelaide Psychological Services childrens psychology psychiatry', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/childrens-psychology-psychiatry/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-childrens-psychology-psychiatry.png', fullPage: true });
});

test('Adelaide Psychological Services suffering from depression anxiety', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/suffering-from-depression-anxiety/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-suffering-from-depression-anxiety.png', fullPage: true });
});

test('Adelaide Psychological Services New Contact Us', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/new-contact-us/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-new-contact-us.png', fullPage: true });
});

test('Adelaide Psychological Services Assessments', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/assessments/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-assessments.png', fullPage: true });
});

test('Adelaide Psychological Services Adult Psychiatry', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/adult-psychiatry/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-adult-psychiatry.png', fullPage: true });
});

test('Adelaide Psychological Services Kids Psychiatry', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/kids-psychiatry/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-kids-psychiatry.png', fullPage: true });
});

test('Adelaide Psychological Services Contact Us', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/contact-us/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-contact-us.png', fullPage: true });
});

test('Adelaide Psychological Services Telehealth', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/telehealth/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-telehealth.png', fullPage: true });
});

test('Adelaide Psychological Services Kids/Teenagers', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/kids-teenagers-psychologist/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-kids-teenagers-psychologist.png', fullPage: true });
});

test('Adelaide Psychological Services Psychiatry', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/psychiatry/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-psychiatry.png', fullPage: true });
});

test('Adelaide Psychological Services Psychology', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/psychology/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-psychology.png', fullPage: true });
});

test('Adelaide Psychological Services Psychiatrists', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/psychiatrists/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-psychiatrists.png', fullPage: true });
});

test('Adelaide Psychological Services Psychologists', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/our-psychologists/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-our-psychologists.png', fullPage: true });
});

test('Adelaide Psychological Services Meet The Team', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/meet-the-team/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-meet-the-team.png', fullPage: true });
});

test('Adelaide Psychological Services About', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/about/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-about.png', fullPage: true });
});

test('Adelaide Psychological Services Home', async ({ page }) => {
    await page.goto('https://psychadelaide.com.au/');
    await expect(page).toHaveScreenshot({ path: 'adelaide-psychological-services-psychological-services.png', fullPage: true });
});