The class SensioLabs\Behat\PageObj...ntext\PageObjectContext has been deprecated with message: in 2.0, to be removed in 3.0. Use the argument resolver instead. See http://behat-page-object-extension.readthedocs.org/en/latest/guide/working_with_page_objects.html#instantiating-a-page-object
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
25
{
26
/**
27
* @var Mink
28
*/
29
protected $mink;
30
31
/**
32
* @var array
33
*/
34
protected $minkParameters;
35
36
/**
37
* {@inheritdoc}
38
*/
39
public function setMink(Mink $mink)
40
{
41
$this->mink = $mink;
42
}
43
44
/**
45
* {@inheritdoc}
46
*/
47
public function setMinkParameters(array $parameters)
48
{
49
$this->minkParameters = $parameters;
50
}
51
52
/**
53
* @param string|null $name name of the session OR active session will be used
54
*
55
* @return Session
56
*/
57
public function getSession($name = null)
58
{
59
return $this->mink->getSession($name);
60
}
61
62
/**
63
* @param string|null $name name of the session OR active session will be used
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.