gpt4 book ai didi

java - 如何在 Selenium WebDriver (Selenium 2) 中运行 Firebug?

转载 作者:IT老高 更新时间:2023-10-28 21:17:46 25 4
gpt4 key购买 nike

在运行 Selenium 2 时,在 Firefox 中激活 Firebug 的最佳方法是什么?

编辑:好的,我意识到“最佳”是可以解释的,但是基于配置文件的解决方案在 selenium 1.0 中确实很痛苦。因此,在被证明更糟之前,任何替代方案都被认为是更好的;)

最佳答案

您可以在代码中创建您的个人资料并动态添加所需的插件。假设您将 Firebug XPI 作为 firebug.xpi 保存到 C:\FF_Profile 文件夹中(转到 Firebug download page,右键单击“添加到 Firefox”并另存为 C:\FF_Profile\firebug.xpi)。

在代码中:

   final String firebugPath = "C:\\FF_Profile\\firebug.xpi";
FirefoxProfile profile = new FirefoxProfile();
profile.addExtension(new File(firebugPath));
// Add more if needed
WebDriver driver = new FirefoxDriver(profile);

这在 WebDriver FAQ 中有描述

关于java - 如何在 Selenium WebDriver (Selenium 2) 中运行 Firebug?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3421793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com