0


Selenium 远程调用 Google Chrome 谷歌浏览器

Selenium 远程调用 Google Chrome 谷歌浏览器

我最近又使用谷歌浏览远程调用发现不能使用了

参考连接
具体原因是因为
谷歌浏览器在11几的版本(目前是:114.0.5735.91)之后只能使用JDK高版本我目前使用的是JDK17版本远程调用如果是低版本比如102左右的是好使的,新使用方法我更新在下面

一. 前沿

每次重新运行Selenium都直接弹出来,运行的次数多了菜单栏一堆谷歌浏览器
,远程就可以解决重复弹出框的问题,还可以解决钉钉浏览器无法登录等问题
.有爬虫检测的页面都可以用这个解决

二. 方法

谷歌新版本增加:
使用JDK17
selenium-java 4.9.0
增加 selenium-http-jdk-client pom
以下是完整pom

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.1.0</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>selenium17</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>selenium17</name>
    <description>selenium17</description>
    <properties>
        <java.version>17</java.version>
        <selenium.version>4.9.0</selenium.version>
        <jsoup.version>1.14.3</jsoup.version>
        <pagehelper.version>1.2.5</pagehelper.version>
        <druid.version>1.1.23</druid.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>

        <!--阿里数据库连接池 -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>${druid.version}</version>
        </dependency>

        <!-- pagehelper 分页插件 -->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>${pagehelper.version}</version>
        </dependency>

        <!-- selenium-java -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>${selenium.version}</version>
        </dependency>

        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-http-jdk-client</artifactId>
            <version>4.5.0</version>
        </dependency>
        <!-- jsoup-java -->
        <dependency>
            <!-- jsoup HTML parser library @ https://jsoup.org/ -->
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>${jsoup.version}</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.16.20</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

1.首先找到桌面的谷歌浏览器
在这里插入图片描述
2.鼠标右键打开属性
在这里插入图片描述
3. 在目标里更改 ,改完之后直接双击点开谷歌浏览器就可以了

1.原先是这样的
C:\Users\13686\AppData\Local\Google\Chrome\Application\chrome.exe
2.在这个后面加上 --user-data-dir 路径自己定义随意,他会自己创建的
–remote-debugging-port=9222 --user-data-dir=“D:\WORK\selenium\ChromeProfile”
3.完整语句
C:\Users\13686\AppData\Local\Google\Chrome\Application\chrome.exe --remote-debugging-port=9222 --user-data-dir=“D:\WORK\selenium\ChromeProfile”

4.然后代码上连接

packagecom.selenium.demo;importcom.selenium.demo.Util.JsoupUtil;importcom.selenium.demo.Util.SeleniumUtil;importcom.selenium.demo.Util.UModalDialogsUtil;importcom.selenium.demo.Util.UUIDUtil;importcom.selenium.demo.domain.Dom;importorg.jsoup.Jsoup;importorg.jsoup.nodes.Document;importorg.jsoup.nodes.Element;importorg.jsoup.select.Elements;importorg.openqa.selenium.*;importorg.openqa.selenium.chrome.ChromeDriver;importorg.openqa.selenium.chrome.ChromeOptions;importorg.openqa.selenium.support.ui.ExpectedConditions;importorg.openqa.selenium.support.ui.WebDriverWait;importjava.util.Collections;importjava.util.List;publicclassSeleniumDemo{//访问地址privatestaticfinalString url ="http://localhost/system/dict";publicstaticvoidmain(String[] args)throwsInterruptedException{//设置驱动,后面的路径自己要选择正确,也可以放在本地System.setProperty("webdriver.chrome.driver","D:\\WORK\\selenium\\chromedriver.exe");//谷歌新版本增加System.setProperty("webdriver.http.factory","jdk-http-client");//创建设置ChromeOptions options =newChromeOptions();//然后前面debuggerAddress 这个不用动 只改后面的地址就是浏览器设置的地址
        options.setExperimentalOption("debuggerAddress","127.0.0.1:9222");//谷歌新版本增加
        options.addArguments("--remote-allow-origins=*");WebDriver driver =newChromeDriver(options);

        driver.get(url);}}

这时候WebDriver 不会给你打开浏览器了,需要你自己打开浏览器,然后运行代码这时候页面就自己加载了

标签: chrome selenium

本文转载自: https://blog.csdn.net/zuichu_2001/article/details/126527725
版权归原作者 我有一个抱枕 所有, 如有侵权,请联系我们删除。

“Selenium 远程调用 Google Chrome 谷歌浏览器”的评论:

还没有评论