Execution ending without processing task

Hi I have a flow in which the studio is to open browser, open application, login and process, it was working in the past but today when I tried to run the script the process closed before completing the entire workflow.

The workflow I have is

  1. Open browser
  2. Login
  3. Click on Account tab
  4. Read CSV (to get the input account no)
  5. Build Datatable
  6. For Each Row in Datatable
  7. Assign (Account=CurrentRow(0). toString
  8. Type Into (Account.ToString)

But when I am running the script it’s doing

  1. Open browser
  2. Login
  3. Click on Account tab

And then output shows execution ended

Can anyone help

@dipon1112000
Run your workflow in Debug mode to observe the execution step by step. This can help you identify the specific activity where the workflow is terminating.

Introduce appropriate delays or timeouts between activities, especially after opening the browser or performing login operations. This can give the application or webpage enough time to load.

Hi @dipon1112000

  1. Check you CSV File is in current location or not.
  2. IF you are using any filter clause, check the data is in CSV or not according to your condition.

@dipon1112000 ,

Check if your Open Browser activity have Continue on error checked

If checked, it will not break the code even if there is any error inside it.

Thansk,
Ashok :slight_smile:

You are right I just had to make changes to CSV thank you for helping

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.