# Check a landing page before launch

**Use case:** 

Check a landing page for WCAG 2.2 accessibility issues before launch and export HTML, PDF, CSV and JSON reports.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://example.com"
    }
  ],
  "maxPagesPerSite": 1,
  "useSitemap": true,
  "includeSubdomains": false,
  "wcagLevel": "AA",
  "standards": [
    "WCAG_2_0",
    "WCAG_2_1",
    "WCAG_2_2"
  ],
  "includePasses": false,
  "generateHtmlReport": true,
  "generatePdfReport": true,
  "brandName": "A11yBatch",
  "brandColor": "#111827",
  "waitAfterLoadMs": 1000,
  "pageTimeoutSecs": 30,
  "respectRobotsTxt": true
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "pageTitle": {
    "label": "Title",
    "format": "string"
  },
  "automatedRiskScore": {
    "label": "Automated risk score",
    "format": "integer"
  },
  "summary.critical": {
    "label": "Critical",
    "format": "integer"
  },
  "summary.serious": {
    "label": "Serious",
    "format": "integer"
  },
  "summary.moderate": {
    "label": "Moderate",
    "format": "integer"
  },
  "summary.minor": {
    "label": "Minor",
    "format": "integer"
  },
  "summary.affectedNodeCount": {
    "label": "Affected nodes",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [White-Label WCAG Audit Report Generator](https://apify.com/cardinal_lecturer/a11ybatch) with a specific input configuration. Visit the [Actor detail page](https://apify.com/cardinal_lecturer/a11ybatch) to learn more, explore other use cases, and run it yourself.