Web automation running slow

Hello everyone,
I have created quite simple sequence for clicking each link in the table in the website in Chrome + selecting from dropdown menu and save. It’s my first project after 4 years since I did developer course, so please be gentle with me :slight_smile: :sweat_smile:

The sequence goes:

  1. Main sequence - use browser and the website
  2. Do - For Each UI Element - ui element is the link in the name of a product
  3. click - Input element CurrentElement (I have selected Input mode Simulate)
  4. Find element (waits for the open with dropdown to open)
  5. Select item from dropdown list
  6. Click on Save button - again I have used Input mode Simulate
  7. Find element - waits for the Table in the website to refresh
  8. Continue

I have also removed all delays, which were obsolete.

There is no issue with the proccess itself, just the running time. Each item takes almost 2 minutes to proccess and the longest waiting time is between 8. continue and 3. Click.

Do you have any idea, what might be the issue?
I’m running the sequence in Studio on Desktop, Windows with Community licence.

For illustration this is how the web looks like - yellow marked is the area which refreshes after each save and red is where the links to click are.

@dholeckova

Instead of find element use element exists if possible

Also…are you saying the click is taking time at 3? Or the find element after click?

Instead of clicking the link you can try using navigate url and navigate to the url directly and perform the steps this will reduce the waiting for table refresh again

Cheers