selenium怎样判断是否是当前页面的title
时间: 2024-09-09 20:14:45 浏览: 93
selenium获取当前页面的url、源码、title的方法
在Selenium中,你可以使用`get_attribute()`方法配合`title`属性来判断页面标题是否符合预期。首先,获取当前页面的标题,然后比较这个值与你需要验证的标题是否一致。以下是一个Python示例:
```python
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
# 获取页面加载完成后的标题
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.TAG_NAME, 'html')) # 或者其他定位策略如ID, CLASS等
)
page_title = driver.title
# 判断页面标题是否是你需要匹配的
if page_title == "预期的页面标题":
print("当前页面标题是:", page_title)
else:
print("当前页面标题不是预期的:", page_title)
#
阅读全文