-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[java] use FileDetector to install Firefox addons if path not found
- Loading branch information
1 parent
05a3a5e
commit e07a40f
Showing
2 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -503,8 +503,8 @@ public void testFirefoxCanNativelyClickOverlappingElements() { | |
public void canAddRemoveExtensions() { | ||
Path extension = InProject.locate("third_party/firebug/favourite_colour-1.1-an+fx.xpi"); | ||
|
||
((HasExtensions) driver).installExtension(extension); | ||
((HasExtensions) driver).uninstallExtension("[email protected]"); | ||
String id = ((HasExtensions) driver).installExtension(extension); | ||
((HasExtensions) driver).uninstallExtension(id); | ||
} | ||
|
||
@Test | ||
|