我需要一種自動方式來在Firefox Selenium webdriver中啓用Flash,而無需用戶交互。如何使用FirefoxProfile啓用FireFox Selenium webdriver中的Adobe Flash
我曾嘗試:
FirefoxProfile profile = new FirefoxProfile();
//As 0 is to disable, I used 1. I don"t know what to use.
profile.setPreference("plugin.state.flash", 1);
WebDriver driver = new FirefoxDriver(profile);
但是,這仍然需要我點擊 「允許」。
This is shown all the time, even with the code above
沒有錯誤。 剛剛沒有工作。 由於我仍然需要手動點擊「允許」按鈕。 –
糾正我,如果我在這裏是錯誤的,但它看起來像我所做的一樣,通過偏好驅動程序對象。你還需要告訴它_go somewhere_。 – Brian
我參與的網站: driver.get(link);需要,Flash插件被允許。我必須手動按下它。 只是想要一種方法來自動化它。 –