-
Notifications
You must be signed in to change notification settings - Fork 0
Show Desktop Step
martinkonopka edited this page Mar 6, 2019
·
9 revisions
Displays desktop and allows participant interact with operating system or installed applications.
To complete the step, use the completion
setting in Timeline step definition.
-
actionType : "ShowDesktop"
(required) -
minimizeAll
: boolean - if set totrue
, all running applications are minimzed before showing the desktop to the participant. Default value isfalse
. The UXC application window is hidden in the tray during the session recording by default, irrespective to this setting. -
showTaskbar
: boolean (optional) - by default, the taskbar is hidden during the session recording. If set totrue
, the taskbar is shown during this step. Use this option only if need the participant to interact with taskbar during the recording.
resultType : "Successful"
Shows desktop without minimizing currently open applications. The step is completed by pressing the F10 key.
{
"action": {
"actionType": "ShowDesktop",
"minimizeAll": false
},
"completion": {
"hotkeys": [ "F10" ]
}
}
Shows desktop and minimizes all open applications. This step may be completed by pressing the F10 key or when the 5 minutes timeout runs out.
{
"action": {
"actionType": "ShowDesktop",
"minimizeAll": true
},
"completion": {
"hotkeys": [ "F10" ],
"timeout": "00:05:00"
}
}
- Home
- Usage Examples
- User Manual
- API Reference
- Installation Manual
- Contributing
- Project Documentation