Issue #3005352 by hchonov, oknate: Passing a Session object to the ExpectationException constructor is deprecated as of Mink 1.7. Pass the driver instead
parent
0a69c9c580
commit
e15bbff78a
|
@ -74,7 +74,7 @@ class WebAssert extends MinkWebAssert {
|
|||
$node = $container->findButton($button);
|
||||
|
||||
if ($node === NULL) {
|
||||
throw new ElementNotFoundException($this->session, 'button', 'id|name|label|value', $button);
|
||||
throw new ElementNotFoundException($this->session->getDriver(), 'button', 'id|name|label|value', $button);
|
||||
}
|
||||
|
||||
return $node;
|
||||
|
@ -120,7 +120,7 @@ class WebAssert extends MinkWebAssert {
|
|||
]);
|
||||
|
||||
if ($node === NULL) {
|
||||
throw new ElementNotFoundException($this->session, 'select', 'id|name|label|value', $select);
|
||||
throw new ElementNotFoundException($this->session->getDriver(), 'select', 'id|name|label|value', $select);
|
||||
}
|
||||
|
||||
return $node;
|
||||
|
@ -150,7 +150,7 @@ class WebAssert extends MinkWebAssert {
|
|||
]);
|
||||
|
||||
if ($select_field === NULL) {
|
||||
throw new ElementNotFoundException($this->session, 'select', 'id|name|label|value', $select);
|
||||
throw new ElementNotFoundException($this->session->getDriver(), 'select', 'id|name|label|value', $select);
|
||||
}
|
||||
|
||||
$option_field = $select_field->find('named', ['option', $option]);
|
||||
|
@ -183,7 +183,7 @@ class WebAssert extends MinkWebAssert {
|
|||
]);
|
||||
|
||||
if ($select_field === NULL) {
|
||||
throw new ElementNotFoundException($this->session, 'select', 'id|name|label|value', $select);
|
||||
throw new ElementNotFoundException($this->session->getDriver(), 'select', 'id|name|label|value', $select);
|
||||
}
|
||||
|
||||
$option_field = $select_field->find('named', ['option', $option]);
|
||||
|
|
Loading…
Reference in New Issue