Firefox Extensions #3258
Answered
by
mdmintz
BelugaByte
asked this question in
Q&A
Firefox Extensions
#3258
|
Hello, |
Answered by
mdmintz
Nov 14, 2024
Replies: 1 comment
|
Firefox calls them "Add-ons" (Chrome calls them "Extensions"). See https://github.com/seleniumbase/SeleniumBase/releases/tag/v1.55.1 self.install_addon(xpi_file)For some reason, it must be done at runtime after the browser has already been spun up, unlike Chrome extensions, which must be initialized before the web browser is launched. So, load your Chrome extensions on the command-line, and load your Firefox add-ons inside the tests. |
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Firefox calls them "Add-ons" (Chrome calls them "Extensions").
That's probably why you didn't find that in the docs (#803 (comment)).
See https://github.com/seleniumbase/SeleniumBase/releases/tag/v1.55.1
There's a method for loading
.xpifiles:For some reason, it must be done at runtime after the browser has already been spun up, unlike Chrome extensions, which must be initialized before the web browser is launched. So, load your Chrome extensions on the command-line, and load your Firefox add-ons inside the tests.