diff --git a/.gitignore b/.gitignore index daa8909a2..6b8ade0e8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ target/classes/* target/test-classes/* target/surefire-reports/* settings.xml +*.iml # Eclipse /bin diff --git a/java-client.iml b/java-client.iml deleted file mode 100644 index 0f0955a8f..000000000 --- a/java-client.iml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/java/io/appium/java_client/pagefactory/AppiumElementLocator.java b/src/main/java/io/appium/java_client/pagefactory/AppiumElementLocator.java index 2572b7813..f2e0049f1 100644 --- a/src/main/java/io/appium/java_client/pagefactory/AppiumElementLocator.java +++ b/src/main/java/io/appium/java_client/pagefactory/AppiumElementLocator.java @@ -143,7 +143,7 @@ public WebElement findElement() { } List result = waitFor(); if (result.size() == 0){ - String message = "Cann't locate an element by this strategy: " + by.toString(); + String message = "Can't locate an element by this strategy: " + by.toString(); throw new NoSuchElementException(message); } if (shouldCache) {