Skip to content

Commit 7d3dc11

Browse files
Merge pull request appium#155 from deadmoto/fix-typo
@deadmoto Thank you for the correction and cleaning up.
2 parents d9ae261 + cc295db commit 7d3dc11

File tree

3 files changed

+2
-66
lines changed

3 files changed

+2
-66
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ target/classes/*
66
target/test-classes/*
77
target/surefire-reports/*
88
settings.xml
9+
*.iml
910

1011
# Eclipse
1112
/bin

java-client.iml

Lines changed: 0 additions & 65 deletions
This file was deleted.

src/main/java/io/appium/java_client/pagefactory/AppiumElementLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public WebElement findElement() {
143143
}
144144
List<WebElement> result = waitFor();
145145
if (result.size() == 0){
146-
String message = "Cann't locate an element by this strategy: " + by.toString();
146+
String message = "Can't locate an element by this strategy: " + by.toString();
147147
throw new NoSuchElementException(message);
148148
}
149149
if (shouldCache) {

0 commit comments

Comments
 (0)