Selenium 无法正确确定页面是否具有 <title> html 标记

Selenium is not properly determining if a page has a <title> html tag

我试图让 Selenium 在加载 Python 时等待网页的标题标签出现。

我尝试用其他类型的 HTML 标签测试此代码,只有 <body> 标签没有导致错误。

wait = WebDriverWait(driver, 10)
driver.get(link)
wait.until(EC.visibility_of_element_located((By.TAG_NAME, 'div')))

我希望代码能够评估完成,但我收到以下错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.7/site-packages/selenium/webdriver/support/wait.py", line 80, in until
    raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message:

title 标签永远不会可见。您可以等待它 出现 ,不过:

wait.until(EC.presence_of_element_located((By.TAG_NAME, 'title')))

标题也有自己的预期条件,title_is()title_contains()。例如:

wait.until(EC.title_is("Google"))

您可以在 documentation 中查看支持的预期条件的完整列表。

如果您想访问 页面标题 ,找到 <title> 标签不是理想的方法。

要打印标题,您需要为以下任一情况引发 WebDriverWait expected_conditions:

  • title_contains(partial_title)
  • title_is(title)
  • 一个例子:

    from selenium import webdriver
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.support import expected_conditions as EC
    
    options = webdriver.ChromeOptions() 
    options.add_argument("start-maximized")
    options.add_argument('disable-infobars')
    driver = webdriver.Chrome(chrome_options=options, executable_path=r'C:\WebDrivers\chromedriver.exe')
    driver.get("https://www.google.com/")
    WebDriverWait(driver, 10).until(EC.title_contains("G"))
    print("Page title is: %s" %(driver.title))
    
  • 控制台输出:

    Page title is: Google