Python+Selenium浏览器后退前进操作+获取当前页面title+获取当前页面url
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Selenium浏览器后退前进操作+获取当前页面title+获取当前页面url相关的知识,希望对你有一定的参考价值。
#coding=utf-8 from selenium import webdriver import time driver = webdriver.Chrome() driver.maximize_window() driver.implicitly_wait(6) driver.get("https://www.baidu.com") driver.find_element_by_id("kw").send_keys("Selenium") driver.find_element_by_id("su").click() time.sleep(3) driver.back() time.sleep(3) driver.forward() time.sleep(3) ele_string = driver.find_element_by_xpath("//*[@id=‘1‘]/h3/a/em").text if (ele_string == "Selenium"): print u"测试成功,结果和预期结果匹配!" print(driver.capabilities[‘version‘]) driver.find_element_by_xpath("//*[@id=‘s_tab‘]/a[text()=‘新闻‘]").click() # 在搜索结果页面点击新闻类别 time.sleep(1) print (driver.current_url) # current_url 方法可以得到当前页面的URL print (driver.title) # title方法可以获取当前页面的标题显示的字段 driver.quit()
以上是关于Python+Selenium浏览器后退前进操作+获取当前页面title+获取当前页面url的主要内容,如果未能解决你的问题,请参考以下文章
基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)
基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)
基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)
uniquefu Python+Selenium学习--前进和后退