页面加载后等待,然后单击
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面加载后等待,然后单击相关的知识,希望对你有一定的参考价值。
This little Gem allows me to click a link on the page automatically a few seconds after the page loads.
$(document).ready(function() { $(".va-slice-1").delay(3000).queue(function(){ $(this).trigger("click"); $(this).dequeue(); }); }); </script>
以上是关于页面加载后等待,然后单击的主要内容,如果未能解决你的问题,请参考以下文章
在 Webdriver 中提交表单后如何等待页面加载。我正在使用 Firefox 驱动程序