- リリース ノート
- 基本情報
- セットアップと構成
- オートメーション プロジェクト
- 依存関係
- ワークフローの種類
- ファイルの比較
- オートメーションのベスト プラクティス
- ソース管理との連携
- デバッグ
- 診断ツール
- ワークフロー アナライザー
- 変数
- 引数
- インポートされた名前空間
- 制御フロー
- オブジェクト リポジトリ
- ログ
- ScaleCoordinates 移行ツール
- ScreenScrapeJavaSupport ツール
- Studio Pro
- 拡張機能
- トラブルシューティング
This tutorial teaches you how to create a basic process in Studio in 10 minutes and run it on your machine. The example opens a browser, loads a certain web page, scrapes information, and writes it to the Output panel, and in a Notepad file.
ビデオを視聴するか、以下の手順を実行してください。
-
Studio を起動します。[ホーム] の Backstage ビューで [プロセス] をクリックして、新しいプロジェクトを作成します。[新しい空のプロセス] ウィンドウが表示されます。
-
新しいプロジェクトの名前とこのオートメーション プロジェクトの目的を要約した説明を入力します。新しいプロジェクトの場所を選択します。
注:プロジェクト名は 128 文字、説明は 500 文字以内です。
-
[作成] をクリックします。新しいプロジェクトが Studio で開きます。
-
In the Activities panel, search for Open Browser and drag it to the Designer panel. Notice that the activity is automatically added inside a Sequence.
-
[ブラウザーを開く] アクティビティの入力フィールドに URL
"https://www.uipath.com/product/studio"を追加します。Ctrl + S キーを使用するかリボンの [保存] をクリックし、Ctrl + F6 キーを押してプロセスを実行します。指定した Web ページが Internet Explorer で開きます。 -
From the Activities panel, add a Get Visible Text activity to the Do container of the Open Browser activity. Click Indicate element inside browser, and click on the text that you want to scrape from the previously loaded web page.
-
In the Variables panel, create a new
stringvariable calledGetText, and set its scope toSequence. The purpose of this variable is to store the scraped information. -
[表示中のテキストを取得] アクティビティの [プロパティ] パネルで [テキスト] プロパティの横のフィールドを選択し、変数
GetTextを挿入します。 -
From the Activities panel, drag a Write stepne activity. In the input text field, add the previously created variable. This activity writes the scraped data to the Output panel.
-
Add an Open Appstepcation activity to the project. Open a Notepad instance, click Indicate window on screen and select the opened appstepcation. Notepad’s file path is detected.
-
Add a Type Into activity in the Open Appstepcation activity’s Do container. Click Indicate element inside window to select the Notepad window, and add the
GetTextvariable to the input text field. This activity writes the scraped text to a Notepad window. -
リボンの [ファイルを実行] をクリックするか、ショートカット キー Ctrl + F6 を使用してプロジェクトを実行します。
When the execution is completed, notice that the scraped text is written to the Output panel, and in the Notepad file.
同様に、Web ページからデータをスクレイピングする別のプロセスを、ウィザードを使用して作成することができます。