- 基本情報
- UiPath Robot について
- インストール要件
- 無人オートメーション用のロボットをインストールする
- 無人オートメーション用のロボットを設定する
- 有人オートメーション用のロボットをインストールする
- 有人オートメーション用のロボットを設定する
- Integrations
- ガバナンス
- トラブルシューティング
Robot JavaScript SDK (RobotJS): UiPath のオートメーション機能を JavaScript アプリケーション内に組み込むためのライブラリです。
UiPath の Robot JavaScript SDK (Robot JS) を使用すると、UiPath のオートメーション機能を JavaScript アプリケーション内に組み込むことができます。Robot JS は、JavaScript ベースのアプリケーションと UiPath Robot 間の通信のブリッジとして機能する一連の JavaScript ライブラリを提供します。
この SDK は、プロセスを JavaScript アプリケーションから直接作成、監視、管理するための機能を拡張します。
前提条件
RobotJS requires the following:
- Studio and Robot version 2019.10 or greater installed on the machine
- Robot JavaScript add-on installed on the machine that executes the process
- Robot connected to an Orchestrator instance
Windows OS 用の RobotJS
Windows Server 2012 R2、Windows 8 および 8.1 で RobotJS アドオンを使用するには、以下が必要です。
- RobotJS バージョン 1.2.5 以降
- Robot バージョン 2021.4.4 以降
macOS 用の RobotJS
macOS ARMv8 および AMD64 で RobotJS アドオンを使用するには、以下が必要です。
- RobotJS バージョン 1.2.7 以降
- Robot バージョン 2021.4.4 以降
機能は Windows 用の RobotJS と似ていますが、いくつかの例外があります。
- Safari ブラウザーはサポートしていません。
- スタンドアロン バージョンは提供されていません。
- クロスプラットフォーム オートメーションのみを実行します。
Robot JavaScript SDK を取得する
Studio versions 2020.4+ provide the Robot JavaScript SDK by default. Licensed under Apache 2.0, it is available from the following sources:
- NPM: The SDK is available as an NPM package with TypeScript bindings. The NPM package can be included in a project by running the following command at the root of the project directory:
npm install --save @uipath/robotnpm install --save @uipath/robot - CDN: The CDN version is added before the closing
</body>tag:<script href="https://download.uipath.com/js/1.3.2/UiPathRobot.js"/><script href="https://download.uipath.com/js/1.3.2/UiPathRobot.js"/> - Direct download: The minimized version of the Robot Javascript SDK is available as a .js package:
https://download.uipath.com/js/1.3.2/UiPathRobot.jshttps://download.uipath.com/js/1.3.2/UiPathRobot.js
ドキュメンテーション
『Developer Guide』(英語) と『User Guide』(英語) は、SDK と Robot 用 JavaScript アドオンの概要を網羅したドキュメントで、使用方法、前提条件、ロボットが有効化されたアプリケーションの初期作成について詳しく説明しています。
.NET でコマンドを使用して、Robot JavaScript SDK の機能を開発することもできます。
仕様
- Robot Javascript SDK で使用されるモデルとメソッドに関する詳細情報を提供する、完全なドキュメントです。
- 「Sample」(英語) には、ボイラープレートと Office アプリケーション用にあらかじめ構築されたサンプルが掲載されています。これらのサンプルは、お使いのカスタム アプリケーションに簡単に統合できます。
機能のデモ
A practical demo using the Robot JavaScript SDK is available at Robot JS Demo. The demo securely connects to your existing Robot, retrieves the processes from UiPath Assistant, and displays them after access authorization is granted.