MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / equals

Method equals

java/src/org/openqa/selenium/support/ui/Select.java:422–429  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

420 }
421
422 @Override
423 public boolean equals(Object o) {
424 if (!(o instanceof Select)) {
425 return false;
426 }
427 Select select = (Select) o;
428 return Objects.equals(element, select.element);
429 }
430
431 @Override
432 public int hashCode() {

Callers 11

findMatchingMethodMethod · 0.45
parametersMatchMethod · 0.45
applyMethod · 0.45
resultAsStringMethod · 0.45
untilMethod · 0.45
SelectMethod · 0.45
setSelectedByIndexMethod · 0.45
selectByVisibleTextMethod · 0.45
isDecoratableListMethod · 0.45
invokeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected