Edge浏览器设置网页自动翻译

一.浏览网页自动翻译

设置->扩展->获取Microsoft Edge扩展->搜索"沉浸式翻译"->获取 。

提示:如果采用其他的翻译扩展没找自动翻译功能,所以这里选择"沉浸式翻译"

二.基于Java WebElement时自动翻译

Java关键代码:

提示:在运行代码前注意结束进程!否则会报错! Could not start a new session. Response code 500. Message: session not created: probably user data directory is already in use, please specify a unique value for --user-data-dir argument, or don't use --user-data-dir

java 复制代码
private static WebDriver driver = null;
    public static void main(String[] args) {
        String url = "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/?form=MA13LH";
        try {
           initEdge("2");
           getDriver().get(url);
           Thread.sleep(100000);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            driver.quit();
        }

    }
public static void initEdge(String type) {
        System.setProperty("webdriver.edge.driver", "D:/edgedriver-win64/msedgedriver.exe");
        EdgeOptions options = new EdgeOptions();
        options.setBinary("C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe");
        //  指定用户数据目录(复用本地浏览器的缓存、Cookie、扩展等)
        options.addArguments("--user-data-dir=C:\\Users\\Admin\\AppData\\Local\\Microsoft\\Edge\\User Data");

        // 1.基本反检测配置
        options.setExperimentalOption("excludeSwitches", Collections.singletonList("enable-automation"));
        options.setExperimentalOption("useAutomationExtension", false);

        // 2. 禁用自动化控制标志
        options.addArguments("--disable-blink-features=AutomationControlled");

        // 3. 禁用 Infobars(可能暴露自动化)
        options.addArguments("--disable-infobars");

        // 4. 禁用扩展和插件
        options.addArguments("--disable-extensions");
        options.addArguments("--disable-dev-shm-usage");
        options.addArguments("--no-sandbox");

        // 5. 禁用 GPU 加速(某些网站会检测)
        options.addArguments("--disable-gpu");

        // 6. 设置合法的 User-Agent(带 Edge 标识)
        options.addArguments("user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0");

        // 7. 无头模式(可选)
        if ("1".equals(type)) {
            options.addArguments("--headless=new"); // Edge 115+ 使用 headless=new
        }

        // 8. 禁用 WebDriver 特征(关键!)
        options.addArguments("--disable-web-security");
        options.addArguments("--allow-running-insecure-content");

        // 9. 禁用通知弹窗
        options.addArguments("--disable-notifications");

        // 10. 禁用密码保存提示
        options.addArguments("--disable-save-password-prompt");

        // 11. 禁用同源策略(可选,可能影响登录)
        // options.addArguments("--disable-site-isolation-trials");
        // 设置代理(例如:123.123.123.123:8080)
        Proxy proxy = new Proxy();
        proxy.setHttpProxy("123.123.123.123:8080");
        options.setCapability("proxy", proxy);
        driver = new EdgeDriver(options);

        // 12. 进一步隐藏 WebDriver 特征(通过 JavaScript)
        ((JavascriptExecutor) driver).executeScript(
                "Object.defineProperty(navigator, 'webdriver', {get: () => false});" +
                        "window.outerWidth = window.innerWidth;" +
                        "window.outerHeight = window.innerHeight;"
        );
    }

    public static WebDriver getDriver() {
        return driver;
    }

    /**
     * 关闭工具进程
     */
    public static void quit() {
        driver.quit();
    }
相关推荐
幻风_huanfeng1 小时前
人工智能之数学基础:概率论和数理统计在机器学习的地位
人工智能·神经网络·线性代数·机器学习·概率论
Python测试之道1 小时前
从零开始:用Python库轻松搭建智能AI代理
开发语言·人工智能·python
xiaozhazha_2 小时前
合同管理系统技术架构深度解析:快鹭云如何通过NLP+区块链实现纠纷率下降67%|附动态安全库存算法实现
自然语言处理·架构·区块链
fyfyfyfyfyl5 小时前
【神经网络在MATLAB中是如何实现的?】
人工智能·神经网络·matlab
西猫雷婶6 小时前
python学智能算法(二十六)|SVM-拉格朗日函数构造
人工智能·python·算法·机器学习·支持向量机
努力一点9487 小时前
安装docker可视化工具 Portainer中文版(ubuntu上演示,所有docker通用) 支持控制各种容器,容器操作简单化 降低容器门槛
linux·运维·服务器·人工智能·ubuntu·docker·容器
大千AI助手8 小时前
LiteCoT:难度感知的推理链压缩与高效蒸馏框架
人工智能·深度学习·机器学习·自然语言处理·提示词·思维链·litecot
钱彬 (Qian Bin)8 小时前
《使用Qt Quick从零构建AI螺丝瑕疵检测系统》——0. 博客系列大纲
人工智能·qt·qml·瑕疵检测·qt quick·yolo8·工业质检
爱思德学术8 小时前
中国计算机学会(CCF)推荐学术会议-C(人机交互与普适计算):COLLABORATECOM 2025
人工智能·物联网·人机交互
java1234_小锋8 小时前
【NLP舆情分析】基于python微博舆情分析可视化系统(flask+pandas+echarts) 视频教程 - snowNLP库实现中文情感分析
python·自然语言处理·flask