Skip to content

Commit bd46c82

Browse files
committed
[grid] Removing Firefox CDP support
It is currently breaking tests, needs to be revisited.
1 parent aa6727e commit bd46c82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/server/src/org/openqa/selenium/grid/node/config/DriverServiceSessionFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public DevToolsInfo(URI cdpEndpoint, String version) {
216216
});
217217
};
218218

219-
Optional<DevToolsInfo> maybeInfo = Stream.of(chrome, edge, firefox)
219+
Optional<DevToolsInfo> maybeInfo = Stream.of(chrome, edge)
220220
.map(finder -> finder.apply(caps))
221221
.filter(Optional::isPresent)
222222
.map(Optional::get)

0 commit comments

Comments
 (0)