Question

I have a auto submit or Click (button) code, i want to add time delay for 2 seconds in this code?

Code Here :

document.evaluate("//input[@value='Submit Now' and @type='submit' and contains(@class, 'button')]", document, null, 9, 
null).singleNodeValue.click();

Please Help, Thank you!

Était-ce utile?

La solution

This looks like a javascript issue, you tagged is as 'java' and 'script'.

To delay this in javascript, you can pass it into the setTimeout function like so:

setTimeout(function() {
    document.evaluate("//input[@value='Submit Now' and @type='submit' and contains(@class, 'button')]", document, null, 9, null).singleNodeValue.click();
}, 2000);

That should do it.

Autres conseils

If you need delay after document.evaluate, assign before setTimeout:

var element = document.evaluate("//input[@value='Submit Now' and @type='submit' and   contains(@class, 'button')]", document, null, 9, null);
 setTimeout(function () { 
    element.singleNodeValue.click();
 }, 2000);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top