Click, Xclick not working

hi
i’m trying to click this button

Siguiente

but nothing happend

i tried
{
“Command”: “click”,
“Target”: “xpath=//[@id=“botonFirma”]/span[2]",
“Value”: “”,
“Targets”: [
"xpath=//
[@id=“botonFirma”]/span[2]”,
“xpath=//div[6]/span/span[2]”,
“css=#botonFirma > span.ui-button-text”
]
}

i tried

{
“Command”: “XClick”,
“Target”: “siguiente2.png”,
“Value”: “”
}

the cursor change but nothing happends.

this javascript code doesnt fire
("#botonFirma").button({ icons : { primary : "ui-icon-check" } }).click(function() { (’#box’).show();
if (validarEntradaJuridicaInteresado() != false && validarDireccionRepresentante()!=false &&
validarEntradaJuridica() != false && validarDireccionInteresado()!=false && validarEntrada() != false) {
if (!document.getElementById(‘alertaMail’).checked){
('#overlay').fadeIn('fast',function(){ (’#box’).animate({‘top’:‘160px’},500);
});
} else {
altaRegistro();
}
}
});

any idea?

Thanks

Do you have a website link or at least a screenshot for us?

this happend with xclick, must select the siguiente button but select a little bit below
Sin título

i solved the problem this way
{
“Command”: “XClick”,
“Target”: “xpath=//[@id="botonFirma"]",
“Value”: “”
},
{
“Command”: “click”,
“Target”: "xpath=//
[@id="botonFirma"]”,
“Value”: “”
}

this are the url and a screenshot
https://rec.redsara.es/

Is the page scrolling? It could be that XClick finds the right position, calculates the right x/y but the page is still scrolling so XClick hits the wrong place. Solution: Add a small PAUSE before the XClick, to give the page the time to scroll in the right place.

Other thing to test: Instead of XPath, use an image as locator for XClick. This will work for sure, but is a bit slower.

This was the y-shift bug that is fixed with V6.0.5 now.