求教:如何让 selenium 在 headless 环境处理有延时才能点击的按钮

查看 47|回复 1
作者:yaleyu   
有的页面打开有个按钮是不可点击,要延时几秒才会变成可点击状态,然后要处理点击后的页面。比如这个 https://ouo.io/go/yq25z
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
element = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'btn-main')))
element.click()
在无图形界面的 Ubuntu Server 上运行,加了chrome_options.add_argument('--headless')就不工作。
在 macOS 上运行,不加--headless ,每次运行自动打开 Chrome 就能正常处理后续的工作。
请问怎么让它在无图形界面的环境也能工作?

headless, 点击, 运行, 按钮

jjplay   
装虚拟屏幕 xvfb
您需要登录后才可以回帖 登录 | 立即注册

返回顶部