practicetestautomation.com APIpracticetestautomation.com ↗
Retrieve page content, form fields, and blog posts from practicetestautomation.com. List pages, extract visible text, and pull structured form field data.
curl -X GET 'https://api.parse.bot/scraper/2640f955-4912-4039-8e8f-08695bafe662/list_pages' \ -H 'X-API-Key: $PARSE_API_KEY'
List all available pages on the site with their titles, slugs, links, and dates.
| Param | Type | Description |
|---|---|---|
| per_page | integer | Number of pages to return (1-100). |
{
"type": "object",
"fields": {
"pages": "array of page summary objects with id, title, slug, link, date, modified",
"total": "integer"
},
"sample": {
"data": {
"pages": [
{
"id": 963,
"date": "2025-10-31T12:15:13",
"link": "https://practicetestautomation.com/practice-test-table/",
"slug": "practice-test-table",
"title": "Test Table",
"modified": "2025-10-31T12:15:19"
},
{
"id": 251,
"date": "2020-01-23T17:05:39",
"link": "https://practicetestautomation.com/practice-test-login/",
"slug": "practice-test-login",
"title": "Test Login",
"modified": "2020-09-08T14:34:16"
}
],
"total": 13
},
"status": "success"
}
}About the practicetestautomation.com API
This API provides 3 endpoints for accessing content from practicetestautomation.com, a site built specifically for QA and test automation practice. The get_page_content endpoint returns all visible text and structured form fields — including inputs, selects with their options, textareas, and buttons — from any page identified by its slug. The list_pages and get_post_content endpoints round out coverage with page metadata and full blog post text.
Page and Form Field Access
The get_page_content endpoint accepts a slug parameter (for example, practice-test-login or practice-test-exceptions) and returns the page title, a visible_text string containing all on-page text separated by newlines, and a form_fields array. Each item in form_fields includes the field's tag, type, name, id, and value. Select elements also carry an options array, making it straightforward to enumerate all dropdown choices without rendering the page yourself.
Listing Available Pages
The list_pages endpoint returns an array of page summary objects, each containing id, title, slug, link, date, and modified. The optional per_page integer parameter accepts values from 1 to 100, letting you control how many results come back in a single call. A total integer in the response tells you how many pages exist on the site overall.
Blog Post Content
The get_post_content endpoint retrieves a blog post by slug and returns the post title, date (ISO format), excerpt, and visible_text. This is useful for extracting tutorial content, course material references, or test scenario descriptions that the site's blog covers without needing to parse HTML yourself.
- Verify login form field names and IDs match expected values in automated test suites
- Enumerate all dropdown options on practice pages to validate select element behavior
- Pull visible page text to assert static content hasn't changed between site deployments
- List all available practice pages to dynamically build a test matrix without hardcoding slugs
- Extract blog post content for offline reference or indexing in a learning management system
- Compare form field structures across multiple practice pages to detect regressions
- Retrieve modified dates from
list_pagesto detect content updates since the last test run
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does practicetestautomation.com have an official developer API?+
What exactly does `get_page_content` return for form fields on the login page?+
practice-test-login slug, form_fields returns objects for each input element, carrying tag, type, name, id, and value fields. Select elements additionally include an options array listing every choice in the dropdown. Buttons are also captured as form field objects.Does `list_pages` return blog posts as well as static pages?+
list_pages endpoint covers site pages only. Blog posts are not included in that listing. To retrieve a blog post you need to call get_post_content directly with a known slug. The API does not currently expose an endpoint for listing all available blog post slugs. You can fork it on Parse and revise to add a blog post listing endpoint.Is there a way to filter `get_page_content` results to specific form field types?+
form_fields array. Filtering by type or tag is not done server-side; you apply that logic client-side after receiving the full array. You can fork the API on Parse and revise it to add a field_type filter parameter.