Click no executed after update to 5.9.3 (Firefox)

Thanks for the test macro! => We confirmed the “clicked twice” issue. The “no click” issue is the same, technically 2 click events are sent in V5.9.3, and that is causing the appearance of no click. Of course we will fix this ASAP.

Meanwhile, just as FYI: The rollback is certainly a good workaround. Another workaround can be to use the Selenium IDE CHECK command to check the boxes (instead of using CLICK or TYPE for this purpose). The CHECK command is not affected by this bug.

{
  "Name": "clicktest",
  "CreationDate": "2020-11-15",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://www.w3schools.com/html/html_forms.asp",
      "Value": ""
    },
    {
      "Command": "comment",
      "Target": "type // id=vehicle2",
      "Value": "Car"
    },
    {
      "Command": "comment",
      "Target": "click // id=vehicle2",
      "Value": ""
    },
    {
      "Command": "check",
      "Target": "id=vehicle2",
      "Value": ""
    }
  ]
}
2 Likes