時期によって重くなるシステムからpdfやcsvをダウンロードしているのですが、ダウンロードできませんと出てしまい、ダウンロード先には失敗したデータが格納されます。
確実にダウンロードしたいのですが、初心者でも設定できる方法を教えてください
Welcome to the community
Use wait for download activity…which waits for the file to be downlaoded and only then it moves to the next activity
Basically you need to include the final click which you make to downlod the file inside the wait for download activity and procide the target folder where the file would be downloaded
Cheers
Hi @M_N ,
Have you tried downloading that file manually?
This issue can occur with Robot downloads only or downloads by humans can also occur
regards,
こんにちは
実装イメージとしては例えば以下でしょうか?
失敗したとき用にリトライスコープアクティビティを配置
その中に並列アクティビティを配置。条件をTrueにしておく。
その中の左側レーンにアプリのステートを確認で、ダウンロード失敗メッセージの有無を確認
メッセージが出れば例外をスローする。=リトライスコープでリトライされる。
右側のレーンは、ダウンロード待機アクティビティを配置。ダウンロードボタンをクリックし、完了後数秒の待機を入れる。
実装イメージ図です(実際の要件にあわせてアレンジください)
ありがとうございます。
初心者にはわからないことだらけですが、試してみます。