我想使用 Selenium 来控制 Firefox,但我想控制 Firefox 的自定义配置文件。
我找到了这个:
File profileDirectory = new File(profileDirectory);
FirefoxProfile profile = new FirefoxProfile(profileDirectory);
WebDriver webDriver = new FirefoxDriver(profile);
但是File
找不到该符号,我不知道哪个库包含它。