Get Page Details

<< Click to Display Table of Contents >>

Navigation:  Actions > Web Automation >

Get Page Details

The Get Page Details action extracts comprehensive information about the current web page. Unlike element-specific actions, this retrieves page-level data in JSON format.

 

When to use this action:

SEO auditing (checking titles, descriptions, meta tags)

Creating site maps by extracting all links

Archiving complete page content for compliance

Monitoring page changes over time

Extracting all images for downloading or verification

Getting clean text content for analysis or indexing

Backing up important web pages

 

WA_GetPageDetails

 

Browser

Select which browser to get page details from

 

Select Properties to Retrieve

Page Metadata:

Title - The page title (from tag)</div></body></html>

Description - Meta description content

Keywords - Meta keywords content

Current URL - The current page address

 

Page Content:

Page Text - All visible text on the page

Page Source - Complete HTML source code

 

Page Resources:

All Links - List of all links (href URLs and text)

All Images - List of all images (src URLs and alt text)

 

Utility Buttons:

Select All - Check all properties

Clear All - Uncheck all properties

 

Save Result to Variable (JSON format)

Variable name to store the JSON result

The result will be a JSON object with selected properties

Result Format

The action returns a JSON object with the selected properties.

For example:

{

 "title": "Page Title",

 "description": "Page meta description",

 "keywords": "keyword1, keyword2, keyword3",

 "currentUrl": "https://example.com/page",

 "pageText": "All visible text on the page...",

 "pageSource": "<!DOCTYPE html><html>...",

 "links": [

   {"href": "https://example.com/link1", "text": "Link 1"},

   {"href": "https://example.com/link2", "text": "Link 2"}

 ],

 "images": [

   {"src": "https://example.com/image1.jpg", "alt": "Image 1"},

   {"src": "https://example.com/image2.jpg", "alt": "Image 2"}

 ]

}

 

 

note Related Topics

Start Browser

Close Browser

Navigate

Mouse Click / Hover / Focus

Click Download Link

Send Keys

Get Element Property

Set Form Field Value

Take Screenshot

Execute Javascript