Declaring capabilities
Cobrowse allows for different levels of capabilities which can be enabled or disabled from the settings of the dashboard or SDKs.
Account-level settings for remote control, full device screenshare, and others are available via your account dashboard. Declaring the supported capabilities on the SDK-side as described below is only necessary for fine-tuning or other advanced use cases.
Several of our capabilities, like full device or remote control, can be enabled or disabled from the Session Settings of the dashboard. However, you may wish to have greater control allowing for capabilities to be enabled for some use cases but disabled for another.
CobrowseIO.capabilities = [ ... ];
must be called before CobrowseIO.start();
Any capability included in the array will be enabled. To disable a capability omit it from the array.
A full list of capabilities can be seen in the table below.
cursor
Should agent cursor be rendered on client side
disappearing_ink
Can the agent use the disappearing ink tool (web only)
drawing
Can the agent draw over the users screen
full_device
Is full device mode enabled
keypress
Can the agent generate key events
laser
Can the agent direct user with laser pointer
pointer
Can the agent point and click on things when in remote control mode
scroll
Can the agent scroll the page (web only)
select
Can the agent select text (web only)
Examples
Allow the agent to scroll but not enter any values or navigate
Disable full device mode
Last updated