Sincerely I didn't know how to write the title. I need to click in a link of each "li" item but every 5 seconds.
I've tried this way:
$("li.li-item").each(function() {
$(this).find("a").click();
// here any solution provided in this post: http://stackoverflow.com/questions/14226803/javascript-wait-5-seconds-before-executing-next-line
});
but it does not work.