Checks that current session address is not equals to provided one.
string $page:
void
ExpectationException
public function addressNotEquals(string $page) { $expected = $this->cleanUrl($page); $actual = $this->getCurrentUrlPath(); $this->assert($actual !== $expected, sprintf('Current page is "%s", but should not be.', $actual)); }