Swap 'expected' and 'actual' in URLAssert

This commit is contained in:
Vaclav Muzikar 2016-02-23 13:13:22 +01:00
parent 77c16c320e
commit 83181f28b2

View file

@ -47,7 +47,7 @@ public class URLAssert {
// }
// };
// wait.until(urlStartsWith);
assertEqualsNormalized(driver.getCurrentUrl(), page.toString());
assertEqualsNormalized(page.toString(), driver.getCurrentUrl());
}
public static void assertCurrentUrlStartsWith(AbstractPage page) {