使用 selenium 时我的 cpu 使用正常吗?
Is my cpu usage normal while using selenium?
当 运行 这个 selenium 脚本时,我的 cpu 使用率平均为 17%,峰值为 22%。这是正常的吗?我有一个 5 5600g 处理器,并且在后台没有 运行 任何东西。提前致谢。
Button = driver.find_elements(By.CLASS_NAME, "button")
while not (driver.find_elements(By.CLASS_NAME, "button")):
time.sleep(1)
driver.refresh()
Button[0].click()
在使用 .
执行测试时,官方没有关于 CPU 用法的基准测试
因此,我不会对 CPU 的平均使用率 17% 感到惊讶 峰值为 22%,即使使用 5 5600g 处理器也是如此:
- Why does Selenium uses a lot of memory
补救步骤在:
当 运行 这个 selenium 脚本时,我的 cpu 使用率平均为 17%,峰值为 22%。这是正常的吗?我有一个 5 5600g 处理器,并且在后台没有 运行 任何东西。提前致谢。
Button = driver.find_elements(By.CLASS_NAME, "button")
while not (driver.find_elements(By.CLASS_NAME, "button")):
time.sleep(1)
driver.refresh()
Button[0].click()
在使用
因此,我不会对 CPU 的平均使用率 17% 感到惊讶 峰值为 22%,即使使用 5 5600g 处理器也是如此:
- Why does Selenium uses a lot of memory
补救步骤在: