Fix typo in callback name
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
1b43184aeb
commit
41a52064c0
|
@ -520,7 +520,7 @@ class FilesAppContext implements Context, ActorAwareInterface {
|
||||||
private function waitForElementToBeEventuallyNotShown($elementLocator, $timeout = 10, $timeoutStep = 1) {
|
private function waitForElementToBeEventuallyNotShown($elementLocator, $timeout = 10, $timeoutStep = 1) {
|
||||||
$actor = $this->actor;
|
$actor = $this->actor;
|
||||||
|
|
||||||
$elementNotFoundCallback = function() use ($actor, $elementLocator) {
|
$elementNotShownCallback = function() use ($actor, $elementLocator) {
|
||||||
try {
|
try {
|
||||||
return !$actor->find($elementLocator)->isVisible();
|
return !$actor->find($elementLocator)->isVisible();
|
||||||
} catch (NoSuchElementException $exception) {
|
} catch (NoSuchElementException $exception) {
|
||||||
|
@ -528,6 +528,6 @@ class FilesAppContext implements Context, ActorAwareInterface {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return Utils::waitFor($elementNotFoundCallback, $timeout, $timeoutStep);
|
return Utils::waitFor($elementNotShownCallback, $timeout, $timeoutStep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue