Problem with HTML plus Autorun Option when opening URL

Hello Kantu Community.

Kindly review the following screenshot. It’s divided in Before and After the autorun.

Explanation:
Before Running = The Open ${!COL7} it’s ok and alone, there is where the URL are stored on the CSV that I use for this macro.

After Running = Whatever I put on the first “open” command, gets copied in front of the second “Open”, effectively killing the URL

Any ideas why this happens and most importantly how to avoid it?

Thank you for your time

Ouch, this is a bug, thanks for the report. I recreated it with this test macro:

{
  "CreationDate": "2018-7-30",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://forum.a9t9.com/t/problem-with-html-plus-autorun-option-when-opening-url/346",
      "Value": ""
    },
    {
      "Command": "captureScreenshot",
      "Target": "111",
      "Value": ""
    },
    {
      "Command": "csvRead",
      "Target": "urllist.csv",
      "Value": ""
    },
    {
      "Command": "open",
      "Target": "${!COL1}",
      "Value": ""
    },
    {
      "Command": "captureScreenshot",
      "Target": "222",
      "Value": ""
    }
  ]
}

We will fix this asap. Until then, as workaround, you can prefix ${!COL7} with https://${!COL7}, then the “base url confusion” does not happen:

So in my test macro above you would use

    {
      "Command": "open",
      "Target": "https://${!COL1}",
      "Value": ""
    },

and in the CSV, of course, remove the https://.

1 Like

Thanks! Will do.

Regards

Hello There Tech Support, Just wanted to add a new finding in this reported Bug. All the HTML labels that are used in the SourceExtract gets also deleted during the autorun. Kindly review the following print as proof.

Hello Tech support.

Just a friendly question. What date do you approximately expect to have this bugs fixes?

Thank you