We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9f755 commit 50c35bfCopy full SHA for 50c35bf
src/main/java/io/appium/java_client/AppiumBy.java
@@ -267,7 +267,8 @@ public boolean equals(Object o) {
267
return false;
268
}
269
AppiumBy appiumBy = (AppiumBy) o;
270
- return Objects.equals(remoteParameters, appiumBy.remoteParameters) && Objects.equals(locatorName, appiumBy.locatorName);
+ return Objects.equals(remoteParameters, appiumBy.remoteParameters) &&
271
+ Objects.equals(locatorName, appiumBy.locatorName);
272
273
274
@Override
0 commit comments