System won't log in

I’m brand new so I apologize if I’m not doing this right but I can’t get this macro to run consistently. Sometimes it works and sometimes it doesn’t and when it does work, it rarely works when ran multiple times back to back. Here are the steps.

  1. openBrowser
  2. type - name=email
  3. type - name=password
  4. click - XPath

This is all I have set up because sometimes as I mentioned it doesn’t log in and I’m not sure how to fix this.

Hi, do you have a link to the website? I do not need the user nanae and/or password, just the link to the website will do to test the form filling.

Thanks for the URL. I recorded a login automation macro and it works fine, just as recorded:

{
  "Name": "login RPA",
  "CreationDate": "2025-5-7",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://dashboard.hostaway.com/login",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "type",
      "Target": "name=email",
      "Value": "test@test.com",
      "Description": ""
    },
    {
      "Command": "type",
      "Target": "name=password",
      "Value": "123",
      "Description": ""
    },
    {
      "Command": "click",
      "Target": "xpath=//*[@id=\"application\"]/div/div/div/div/div/form/div/button",
      "Value": "",
      "Description": ""
    }
  ]
}