Python Selenium前进驱动方法
此技术用于在网页浏览器的历史记录中导航前进,允许Selenium在浏览器的历史页面中执行任何新的导航命令。
这个Selenium Python中的前进驱动方法可以提高自动化测试脚本的效率和准确性,使你能够快速切换。
设置
Firefox可执行文件
- 从这里下载Firefox浏览器安装程序。
-
下载完毕后,安装浏览器,一个exe文件会自动放置在 C:\Program Files\Mozilla Firefox\firefox.exe 。我们稍后会用到它。
Gecko驱动程序
-
Windows用户可以从这里下载gecko驱动程序。其他版本请参见版本发布页面。
-
解压缩zip文件,将”geckodriver.exe”文件放置在C:\目录中。我们稍后将在代码中引用它。
Selenium Python包
我们将使用最新版本的Selenium Webdriver,因此请使用pip安装以下内容:
pip3 install -U selenium
pip3 install -U webdriver-manager
步骤
- 从Selenium导入必要的模块
-
使用Options()函数设置Firefox二进制文件位置
-
在Firefox()函数的executable_path参数中设置Firefox驱动程序路径
-
使用get()函数启动Firefox驱动程序并打开第一个网站
-
使用forward()方法导航到第二个网站并打印页面的标题
示例
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.firefox.options import Options
options = Options()
# you need to download and install firefox and it will be in the following path
options.binary_location = r'C:\Program Files\Mozilla Firefox\firefox.exe'
# you need to download and install geckodriver.exe and put it in the same folder as this script
driver = webdriver.Firefox(executable_path=r'C:\geckodriver.exe', options=options)
# launch driver using the selenium webdriver and open first website
driver.get('https://tutorialspoint.com/selenium/selenium_automation_practice.htm')
print(f"Loaded first page. Title of the page is : {driver.title}")
# instruct driver using the selenium webdriver to open the second website
driver.get('https://www.tutorialspoint.com/python3/index.htm')
# step one step forward browser history
driver.forward()
print(f"Loaded second page. Title of the page is : {driver.title}")
输出
进度在控制台可见
Loaded first page. Title of the page is : Selenium - Automation Practice
Form
Loaded second page. Title of the page is : Python 3 Tutorial
1. 第一页加载完成
2. 第二页加载完成
- 从Selenium导入所需的模块,然后设置Firefox浏览器的选项。
-
使用Firefox可执行文件的路径设置二进制文件位置。使用GeckoDriver可执行文件的路径设置驱动程序,Selenium需要它与Firefox浏览器交互。
-
使用get()函数启动驱动程序以打开第一个网站,并将页面标题打印到控制台。
-
然后使用get()函数指示驱动程序导航到第二个网站。
-
forward()方法跳转到下一页。
结论
Selenium Python前进驱动方法是一种强大的方法,可以显着提高自动化测试脚本的效率和准确性。通过使用Selenium WebDriver API提供的”forward()”方法,您可以轻松在浏览器的历史记录中前进,而无需发出新的导航命令。这可以加快您的测试脚本的整体性能并节省时间。本博客讨论了在Selenium Python中使用前进驱动方法的优势,并详细介绍了如何将其包含在您的测试脚本中。