Selenium WebDriverWait 但仍然 "Element is not clickable at point"

Selenium WebDriverWait but still "Element is not clickable at point"

我有以下代码(br 是 webdriver,一切都已导入)。

前 3 行工作正常,但 link1.click() 仍然给我一个错误:

link = WebDriverWait(br, 30).until(EC.element_to_be_clickable((By.ID, "buttonNew Project")))
link.click()    
link1 = WebDriverWait(br, 30).until(EC.element_to_be_clickable((By.ID, "MP")))
link1.click()

即使它应该等到可点击时,我仍然收到错误消息:

WebDriverException: unknown error: Element is not clickable at point (543, 170). Other element would receive the click: <div id="screenBlocker" style="width: 1920px; height: 979px; display: block; background-position: 940px 420px;"></div>
  (Session info: chrome=49.0.2623.108)
  (Driver info: chromedriver=2.21.371459 (36d3d07f660ff2bc1bf28a75d1cdabed0983e7c4),platform=Windows NT 6.1 SP1 x86_64)(543, 170)

Other element would receive the click: <div id="screenBlocker" st...

screenBlocker 听起来确实像一个屏幕拦截器。您需要关闭的页面顶部有一个 popup/overlay,使其不可见。

如果没有可见的 "close" 按钮,就这样让它不可见:

blocker = driver.find_element_by_id("screenBlocker")
driver.execute_script("arguments[0].style = {display: 'none'};", blocker)