胆囊息肉

注册

 

发新话题 回复该主题

Pythonselenium实现Web [复制链接]

1#

一、先安装selenium驱动或者插件

首先创建Maven项目

在pom.xml里面加上,这个是selenium的Maven依赖包

dependencygroupIdorg.seleniumhq.selenium/groupIdartifactIdselenium-java/artifactIdversion4.0.0-alpha-5/version/dependency

其次下载3个浏览器需要的selenium的驱动程序

我这里已经下载了目前最新的驱动,前提所有的浏览器版本是最新的。

如果不想下载,有第二种方法,前提浏览器要有这个selenium的插件(仅限谷歌和火狐,IE没有插件),而且谷歌还必须要有账号才能打开谷歌网上应用店,如下图所示:

火狐浏览器可以直接下载:

二、编写Python代码

importorg.junit.Assert;importorg.junit.jupiter.api.Test;importorg.openqa.selenium.By;importorg.openqa.selenium.WebDriver;importorg.openqa.selenium.WebElement;importorg.openqa.selenium.chrome.ChromeDriver;publicclassChrome_Browser{

Testpublicvoidf()throwsInterruptedException{//写代码操作浏览器,模拟人工测试:api//System.setProperty("webdriver.chrome.driver","src/main/sources/chromedriver.exe");//1、创建一个Chrome驱动WebDriverdriver=newChromeDriver();//2、输入百度网站进行访问driver.get("
分享 转发
TOP
发新话题 回复该主题