3

我有正在测试的网络应用程序。而且我只需要使用 Firefox 5 从 Lunix 和 Windows 测试它。那么,如何在 New FirefoxDriver() 中设置仅 Firefox 5 运行的特定 Firefox 版本,而不是 Firefox 6 或 9?我不想设置 Firefox 的路径,因为当我们有多个操作系统时,这不是有用的方法。

4

1 回答 1

2

创建一个 Firefox 5 配置文件并在下面给出该配置文件的名称。它将启动给定的配置文件浏览器。

FirefoxProfile profile = new ProfilesIni().getProfile(profileName);
DesiredCapabilities dc = DesiredCapabilities.firefox(); 
dc.setCapability(FirefoxDriver.PROFILE, profile); 
driver = new FirefoxDriver(dc);

请参阅此链接以了解如何创建 Firefox 配置文件。

于 2012-09-26T08:04:01.920 回答