0

Is it possible to control plugins like FlashGot for FF with Selenium? If yes how? The only related stuff I've found regarding plugins and Selenium is following question which only mention (un)installation of plugin using Selenium.

Community
  • 1
  • 1
Wakan Tanka
  • 7,542
  • 16
  • 69
  • 122

1 Answers1

0

It is not possible to test Addons with Selenium, since they live outside browser DOM.

However you can use Robot class to simulate mouse actions done by user. Another option would be to use Sikuli.

Example of Robot class usage is given in this blog post

parishodak
  • 4,506
  • 4
  • 34
  • 48