File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
java/client/src/org/openqa/selenium/firefox/internal Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -245,21 +245,6 @@ public Response execute(Command command) throws IOException {
245
245
response .setValue (wrappedElement );
246
246
}
247
247
}
248
-
249
- if (DriverCommand .FIND_ELEMENTS .equals (command .getName ())
250
- || DriverCommand .FIND_CHILD_ELEMENTS .equals (command .getName ()))
251
- {
252
- if (response .getStatus () == ErrorCodes .SUCCESS ) {
253
- List <Object > wrapped = Lists .newArrayList ();
254
- List <Object > elementIds = (List <Object >) response .getValue ();
255
- for (Object elementId : elementIds ) {
256
- Map <String , Object > wrappedElement = Maps .newHashMap ();
257
- wrappedElement .put ("ELEMENT" , elementId .toString ());
258
- wrapped .add (wrappedElement );
259
- }
260
- response .setValue (wrapped );
261
- }
262
- }
263
248
}
264
249
}
265
250
You can’t perform that action at this time.
0 commit comments