- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 python selenium 的上下文中,我不太了解 driver.set_page_load_timeout(n)
VS 的确切区别。 driver.set_script_timeout(n)
。两者似乎可以互换使用,以设置超时以通过 driver.get(URL)
加载 URL,但有时也会一起使用。
场景 1:
driver.set_page_load_timeout(5)
website = driver.get(URL)
results = do_magic(driver, URL)
场景 2:
driver.set_script_timeout(5)
website = driver.get(URL)
results = do_magic(driver, URL)
这两种情况有何不同?哪些情况会在一种情况下触发超时,而在另一种情况下不会?
最佳答案
根据 Selenium-Python API 文档 set_page_load_timeout(n)
和 set_script_timeout(n)
都是超时 用于配置 webdriver 实例以在程序执行期间遵守的方法。
set_page_load_timeout(time_to_wait)
设置在抛出错误之前等待页面加载完成的时间量,定义为:
def set_page_load_timeout(self, time_to_wait):
"""
Set the amount of time to wait for a page load to complete
before throwing an error.
:Args:
- time_to_wait: The amount of time to wait
:Usage:
driver.set_page_load_timeout(30)
"""
try:
self.execute(Command.SET_TIMEOUTS, {
'pageLoad': int(float(time_to_wait) * 1000)})
except WebDriverException:
self.execute(Command.SET_TIMEOUTS, {
'ms': float(time_to_wait) * 1000,
'type': 'page load'})
在这里您可以找到关于 set_page_load_timeout
的详细讨论。
set_script_timeout(time_to_wait)
设置脚本在 execute_async_script
期间应等待的时间量(Javascript/AJAX Call) 在抛出错误之前调用并定义为:
def set_script_timeout(self, time_to_wait):
"""
Set the amount of time that the script should wait during an
execute_async_script call before throwing an error.
:Args:
- time_to_wait: The amount of time to wait (in seconds)
:Usage:
driver.set_script_timeout(30)
"""
if self.w3c:
self.execute(Command.SET_TIMEOUTS, {
'script': int(float(time_to_wait) * 1000)})
else:
self.execute(Command.SET_SCRIPT_TIMEOUT, {
'ms': float(time_to_wait) * 1000})
关于python - Selenium .set_script_timeout(n) 有什么作用,它与 driver.set_page_load_timeout(n) 有何不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48941260/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!