Skip to content

Open Website Page

Overview

Open pages of website modules within the platform in a pop-up window to achieve custom data rendering and interaction

Parameter Configuration

ParameterDescription
Website ModuleThe website module to which the opened page belongs
Page AddressThe page resource address within the website module. Context variables can be obtained using expressions to specify dynamic content
Hide Close ButtonHide the close button of the opened pop-up window
Interactive ExecutionWhether the opened website page has user interaction capabilities
TitleThe title of the pop-up window. Context variables can be obtained using expressions to specify dynamic content
Window Top DistanceThe distance from the top of the display dialog box. Context variables can be obtained using expressions to specify dynamic content
Window WidthThe width of the display dialog box. Context variables can be obtained using expressions to specify dynamic content
Window HeightThe height of the display dialog box. Context variables can be obtained using expressions to specify dynamic content
Display Modal WindowWhether the display dialog box is modal

Return Value

ParameterTypeDescription
Return ValueObjectThe return value set by the website page. This return value can only be obtained after enabling interaction and when the website page calls to set the return value

Usage Instructions

  • Dialog Height and Width

    • The set content needs to include size units. For unit ranges, refer here
  • After hiding the close button, the page can be closed by website pages using the cross-Iframe call provided by the platform. Refer here

    javascript
    systemService.close();
  • After enabling interactive execution, the website page passes data to the platform, and then automation execution resumes. data must be an object type

    javascript
    systemService.payload(data);

Usage Scenarios

  • Personalized rendering of form data within the platform, and resume calling automation after form filling and submission

Usage Examples

Website Page Rendering

Usage Instructions

The website page used here comes from Open Link - Typical Usage Example