💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ## 概述 我们通常可以通过获取title 、URL和text等信息进行断言 ``` from selenium import webdriver if __name__ == '__main__': driver = webdriver.Chrome() driver.get("https://www.baidu.com") print('Before search================') # 打印当前页面title title = driver.title if title != "百度一下,你就知道": print("断言失败") driver.quit() ```