Skip to content

Commit 64447d4

Browse files
pujaganidiemol
andauthored
Ensure third party files are available for browser testing (#9323)
Co-authored-by: Diego Molina <[email protected]>
1 parent 995d897 commit 64447d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

java/client/test/org/openqa/selenium/firefox/BUILD.bazel

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ java_test_suite(
1717
tags = [
1818
"requires-network",
1919
],
20+
data = [
21+
"//third_party/firebug:firebug-1.5.0-fx.xpi",
22+
"//third_party/firebug:mooltipass-1.1.87.xpi",
23+
],
2024
deps = [
2125
"//java/client/src/org/openqa/selenium/firefox",
2226
"//java/client/src/org/openqa/selenium/remote",

java/client/test/org/openqa/selenium/firefox/FirefoxProfileTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ public void shouldInstallExtensionFromZip() {
161161
}
162162

163163
@Test
164-
@Ignore("Need to figure out why files are not showing up")
165164
public void shouldInstallWebExtensionFromZip() {
166165
profile.addExtension(InProject.locate(MOOLTIPASS_PATH).toFile());
167166
File profileDir = profile.layoutOnDisk();
@@ -170,7 +169,6 @@ public void shouldInstallWebExtensionFromZip() {
170169
}
171170

172171
@Test
173-
@Ignore("Need to figure out why files are not showing up")
174172
public void shouldInstallExtensionFromDirectory() throws IOException {
175173
File extension = InProject.locate(FIREBUG_PATH).toFile();
176174
File unzippedExtension = Zip.unzipToTempDir(new FileInputStream(extension), "unzip", "stream");
@@ -181,7 +179,6 @@ public void shouldInstallExtensionFromDirectory() throws IOException {
181179
}
182180

183181
@Test
184-
@Ignore("Need to figure out why files are not showing up")
185182
public void shouldInstallWebExtensionFromDirectory() throws IOException {
186183
File extension = InProject.locate(MOOLTIPASS_PATH).toFile();
187184
File unzippedExtension = Zip.unzipToTempDir(new FileInputStream(extension), "unzip", "stream");

java/private/suite.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ def java_selenium_test_suite(
131131
size = None,
132132
test_identifiers = ["Test.java"],
133133
deps = None,
134-
data = [],
135134
jvm_flags = [],
136135
tags = [],
137136
**kwargs):

0 commit comments

Comments
 (0)