我正在寻找一种方法将Selenium Webdriver连接到Firefox扩展/插件。 我想从selenium Webdriver的api中的firefox扩展开始一个函数。这有可能吗? 我知道我可以调用页面内的javascript代码,但不能在firefox扩展中调用。
如果使用selenium webdriver是不可能的,还有另一种方法可以连接,也许是用java?
非常感谢你的帮助!
答案 0 :(得分:0)
如何做到这一点的方法是:
SELENIUM
初始化Webdriver时:
ProfilesIni allProfiles = new ProfilesIni();
FirefoxProfile desiredProfile = allProfiles.getProfile("SELENIUM");
WebDriver driver = new FirefoxDriver(desiredProfile);