0


Selenium java 控制当前已经打开的 chrome浏览器窗口

首先来到安装 chrome浏览器 的文件夹下,例:C:\Program Files (x86)\Google\Chrome\Application

在此界面打开 cmd窗口,

然后输入:chrome.exe --remote-debugging-port=9527 --user-data-dir=“F:\selenium\AutomationProfile” ,并回车。
这句代码的意思是启动 chrome浏览器 的调试模式

  • user-data-dirr=“F:\selenium\AutomationProfile” 是在单独的配置文件中启动 chrome浏览器,可以理解为 新的浏览器,记得创建对应文件夹哦;
  • 其中 9527 为端口号,可自行指定。

此时候,如果无误的话就可以看到桌面新打开了一个 chrome 浏览器了。

编写 java 程序获取控制 浏览器

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
public class SeleniumOptions {
    static {
        /*
        浏览器驱动运行地址
         */
        System.setProperty("webdriver.chrome.driver", "C:\\Users\\Administrator\\Desktop\\chromedriver_win32\\chromedriver.exe");
        /*
        浏览器运行地址
         */
        System.setProperty("webdriver.chrome.bin", "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe");
    }

    public static void main(String[] args) {
        ChromeOptions chromeOptions = new ChromeOptions();
        chromeOptions.setExperimentalOption("debuggerAddress", "localhost:9527");
//        chromeOptions.addArguments()
        WebDriver  driver = new ChromeDriver(chromeOptions);

        driver.get("https://live.douyin.com/category/3_10000_2_2726");
        
        System.out.println(driver.getTitle());
    }
}
标签: chrome selenium 前端

本文转载自: https://blog.csdn.net/u013084858/article/details/126327821
版权归原作者 平静的大海 所有, 如有侵权,请联系我们删除。

“Selenium java 控制当前已经打开的 chrome浏览器窗口”的评论:

还没有评论