LoginSignup
0
1

More than 3 years have passed since last update.

AAE2019 Bot実行時エラー対策Tips(随時追加中)

Posted at

はじめに

AutomationAnywhere A2019で発生するエラーと対策について、知っている限り記載します。
※まだ数は少ないですが、随時内容追加予定です。
※バージョンが上がったら日本語化される(かもしれない)

Webブラウザ操作系

ハイパーリンクが見つからないエラー

There was a problem at line 10
This may be due to the following reason:
LINK が見つかりません。検索条件が一致しませんでした。

To continue, edit the bot and fix the error. Then, try again.
If you continue to see this message, please contact your system administrator.
コード: bot.execution.error

直接原因

Webブラウザ操作で、対象のハイパーリンクが見つからない。

対応案

Web画面の操作の再キャプチャを行う 他?
(画面上にリンクがあるのにこれが出るケースもある。原因究明中)


ブラウザの対象Windowが見つからない

There was a problem at line 11
This may be due to the following reason:

Cannot find window or application titled '[Webページのタイトル]' that was open during recording
To continue, edit the bot and fix the error. Then, try again.
If you continue to see this message, please contact your system administrator.
コード: bot.execution.error

直接原因

対象のWebページが開いていない。

対応案

当ステップ実行前に、対象Webページが開けているか確認する。


テーブル操作時エラー

There was a problem at line 13
This may be due to the following reason:

Invalid argument supplied to 'table', index '8' is invalid or out of bound.

To continue, edit the bot and fix the error. Then, try again.
If you continue to see this message, please contact your system administrator.
コード: bot.execution.error

直接原因

テーブルの列・表のインデックス指定が範囲外。
javaでいうならば、ArreyIndexOutOfBoundsException。

対応案

表の内容を確認し、取得対象行列のインデックスとして指定した値を見直す。
★indexはjavaなどと同じく、0からの指定になる点に注意。
 (このあたり、一般ユーザーにはわかりにくいかなぁ)


メール送信

メール送信失敗(接続情報が不正)

This may be due to the following reason:
E メールメッセージの送信中にエラーが発生しました。提供された接続の詳細を確認して、もう一度お試しください。

To continue, edit the bot and fix the error. Then, try again.

If you continue to see this message, please contact your system administrator.
コード: bot.execution.error

直接原因

メール送信失敗。メール送信の設定がおかしい?

対応案

設定内容と同じ内容で、メーラーで送信可能か確認する

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1