Slow behavior after closing a tab in chrome

HI all,

When I run the following macro in chrome, the execution time of the command “click” in line 7 takes much longer than when I run it in firefox.
Is this a bug?

I tried to run it with only UI.Vision RPA extension enabled, but it didn’t get any faster.
Please point out if there is any other information you need.

This is a macro for verification purposes, so the content is meaningless.
When reproducing the event, please set the Google search results to be displayed in a new tab.

{
  "Name": "Test1",
  "CreationDate": "2022-1-25",
  "Commands": [
    {
      "Command": "echo",
      "Target": "${!runtime}",
      "Value": "blue",
      "Description": ""
    },
    {
      "Command": "open",
      "Target": "https://www.google.co.jp/search?q=阿部寛",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "click",
      "Target": "xpath=//*[@id=\"rso\"]/div/div/div/div/div/a/h3",
      "Value": "",
      "Targets": [
        "xpath=//*[@id=\"rso\"]/div/div/div/div/div/a/h3",
        "xpath=//h3",
        "css=#rso > div:nth-child(1) > div > div > div.NJo7tc.Z26q7c.jGGQ5e > div > a > h3"
      ],
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=1",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=close",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "echo",
      "Target": "${!runtime}",
      "Value": "blue",
      "Description": ""
    },
    {
      "Command": "click",
      "Target": "xpath=//button[@type='submit']",
      "Value": "",
      "Targets": [
        "xpath=//*[@id=\"tsf\"]/div/div/div[2]/div/button",
        "xpath=//button[@type='submit']",
        "xpath=//button",
        "css=#tsf > div:nth-child(1) > div.A8SBwf > div.RNNXgb > div.GeTMDd > button"
      ],
      "Description": ""
    },
    {
      "Command": "echo",
      "Target": "${!runtime}",
      "Value": "blue",
      "Description": ""
    }
  ]
}

Thanks for the good test case. I confirmed the issue. This issue seems to be related to the manifest V3 transition. In V6.2.8 the Click (Line7) is much faster.

=> I added this to our “to fix” list.

Thanks for the reply.

I have confirmed that v6.2.8 works at the same speed as firefox.
I’m looking forward to getting UI.Vision RPA running comfortably with the migration to Manifest V3.