- Overview
- Custom activities
- Migrating Activities to .NET 6
- Release Notes
- Building Workflow Analyzer Rules
- Building Activities Project Settings
- Creating Custom Wizards
- Prioritize Activities by Scope
- UiPath.Activities.Api.Base
- UiPath.Studio.Activities.Api
- UiPath.Studio.Activities.Api.Activities
- UiPath.Studio.Activities.Api.BusyService
- UiPath.Studio.Activities.Api.ExpressionEditor
- UiPath.Studio.Activities.Api.Expressions
- UiPath.Studio.Activities.Api.Licensing
- UiPath.Studio.Activities.Api.Mocking
- UiPath.Studio.Activities.Api.ObjectLibrary
- UiPath.Studio.Activities.Api.PackageBindings
- UiPath.Studio.Activities.Api.ProjectProperties
- UiPath.Studio.Activities.Api.ScopedActivities
- UiPath.Studio.Activities.Api.Settings
- UiPath.Studio.Activities.Api.Wizards
- UiPath.Studio.Activities.Api.Workflow
- UiPath.Studio.Api.Controls
- UiPath.Studio.Api.Telemetry
- UiPath.Studio.Api.Theme
- Robot JavaScript SDK
- About the Robot JavaScript SDK
- Configuration Steps
- Triggers SDK
Configuration Steps
In order for your automation projects to benefit from the Robot JavaScript SDK, the following prerequisites need to be met:
- Studio and Robot version 2021.10 or greater installed
- The UiPath JavaScript Add-On installed on the Robot machine
When the UiPath Robot JavaScript Add-On is run, you need to provide access to your custom application or web page to connect to the Robot.
The access is handled by a two-step dialog. Both steps have to be confirmed in order to run RobotJS. They can be automated as described below.
This step refers to the browser requesting permissions to open the UiPath Assistant.
uipath-web://*
value as a trusted (allowed) URL in the browser's settings. The uipath-web://*
refers to the UiPath Robot web protocol handler.
The robot consent dialog is used to allow the connection between the Robot JavaScript SDK and the Robot Executor.
UIPATH_ROBOTJS_ALLOWLIST
System Environment Variable.
80
or 443
).
This SDK provides all the necessary methods and properties you can include in your custom application or web page. You can download it as follows:
The npm package is available with TypeScript bindings. To include it in your project, you need to execute the following command at the root of your project directory:
npm install --save @uipath/robot
npm install --save @uipath/robot
</body>
tag.
<body>
...
...
<script href="//download.uipath.com/js/1.3.2/UiPathRobot.js"></script>
</body>
<body>
...
...
<script href="//download.uipath.com/js/1.3.2/UiPathRobot.js"></script>
</body>
You can also grab the Robot JavaScript SDK via direct download.
ListenerPort
and TokenExpiryInDays
parameters in the uipath.config
file from the installation folder. By default, the section does not contain any keys.
The configuration file needs to contain the following:
<robotJsSettings>
<add key="ListenerPort" value="2323" />
<add key="TokenExpiryInDays" value="30" />
</robotJsSettings>
<robotJsSettings>
<add key="ListenerPort" value="2323" />
<add key="TokenExpiryInDays" value="30" />
</robotJsSettings>
Attribute |
Description |
---|---|
|
The
UiPath.RobotJS.ServiceHost.exe starts a HttpListener on the configured port and contains the information about other local listeners from the active user session on that system.
Please note that the port value here needs to match the one configured in the SDK Settings.
|
|
Any request coming from a new domain needs to have consent from the user to allow access of UiPath Robots from a web application. These consents are valid for the said number of days mentioned in this setting. |