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
| Parameter | Description |
|---|---|
| Website Module | The website module to which the opened page belongs |
| Page Address | The page resource address within the website module. Context variables can be obtained using expressions to specify dynamic content |
| Hide Close Button | Hide the close button of the opened pop-up window |
| Interactive Execution | Whether the opened website page has user interaction capabilities |
| Title | The title of the pop-up window. Context variables can be obtained using expressions to specify dynamic content |
| Window Top Distance | The distance from the top of the display dialog box. Context variables can be obtained using expressions to specify dynamic content |
| Window Width | The width of the display dialog box. Context variables can be obtained using expressions to specify dynamic content |
| Window Height | The height of the display dialog box. Context variables can be obtained using expressions to specify dynamic content |
| Display Modal Window | Whether the display dialog box is modal |
Return Value
| Parameter | Type | Description |
|---|---|---|
| Return Value | Object | The 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
javascriptsystemService.close();After enabling interactive execution, the website page passes data to the platform, and then automation execution resumes. data must be an object type
javascriptsystemService.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

