Cannot login with Click, XClick, XType

While using record to create a script to log into a web portal we use, I can get the script to go to the portal, enter the credentials, but it will not click the login button. It highlights it but nothing happens. I have tried Click, XClick, XType, Click and Wait (default). Click and Wait throws and error, but all other options process fine, but nothing logs in. Here is my script:

{
“Name”: “Creatio Login”,
“CreationDate”: “2021-9-3”,
“Commands”: [
{
“Command”: “open”,
“Target”: “Creatio”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “type”,
“Target”: “id=loginEdit-el”,
“Value”: “bfogliano@ctgusa.net”,
“Targets”: [
“id=loginEdit-el”,
“xpath=//[@id="loginEdit-el"]",
“xpath=//input[@id=‘loginEdit-el’]”,
“xpath=//div/div/input”,
“css=#loginEdit-el”
],
“Description”: “”
},
{
“Command”: “type”,
“Target”: “id=passwordEdit-el”,
“Value”: “1w2L4di@60r?”,
“Targets”: [
“id=passwordEdit-el”,
"xpath=//
[@id="passwordEdit-el"]”,
“xpath=//input[@id=‘passwordEdit-el’]”,
“xpath=//div/div[2]/input”,
“css=#passwordEdit-el”
],
“Description”: “”
},
{
“Command”: “clickAndWait”,
“Target”: “id=t-comp14-textEl”,
“Value”: “”,
“Targets”: [
“id=t-comp14-textEl”,
“xpath=//*[@id="t-comp14-textEl"]”,
“xpath=//span[@id=‘t-comp14-textEl’]”,
“xpath=//div[6]/span”,
“css=#t-comp14-textEl”
],
“Description”: “”
}
]
}

Any help is greatly appreciated.

Probably in the page there are dynamic xpaths and therefore the macro can not work

Read here:
https://ui.vision/rpa/docs/selenium-ide/click#changingid

So you’re saying there is no way to make it work, or I have to use a different method? I have read through your link and tried some things based on IDs from the site, not working. Is there a particular method I am supposed to use?

For an experienced person there is no site that cannot be automated, just study and find the right commands to use.

With XClick I am 100% sure that it can be automated. Do you use XClick | Xpath=... or XClick | image.png?

=> Use the image version, because maybe your XPath is wrong (= click hitting the wrong area). But with an image it will work!