There was an error while loading. Please reload this page.
2 parents d9ae261 + cc295db commit 7d3dc11Copy full SHA for 7d3dc11
.gitignore
@@ -6,6 +6,7 @@ target/classes/*
6
target/test-classes/*
7
target/surefire-reports/*
8
settings.xml
9
+*.iml
10
11
# Eclipse
12
/bin
java-client.iml
src/main/java/io/appium/java_client/pagefactory/AppiumElementLocator.java
@@ -143,7 +143,7 @@ public WebElement findElement() {
143
}
144
List<WebElement> result = waitFor();
145
if (result.size() == 0){
146
-String message = "Cann't locate an element by this strategy: " + by.toString();
+String message = "Can't locate an element by this strategy: " + by.toString();
147
throw new NoSuchElementException(message);
148
149
if (shouldCache) {
0 commit comments