BehatPageObjectExtension icon indicating copy to clipboard operation
BehatPageObjectExtension copied to clipboard

Results 13 BehatPageObjectExtension issues
Sort by recently updated
recently updated
newest added

This PR solves the following issue. If in a Context that extends PageObjectContext I write: ``` private function getLoginPage(): LoginPage { return $this->getPage(LoginPage::class); } ``` Both PHPStan and PHPStorm emit...

Currently, the only way I can see to open a page with query string parameters it seems to be the following: ``` class Homepage extends Page { protected $path =...

``` Expected to be on "https://www.google.com/" but found "" instead (SensioLabs\Behat\PageObjectExtension\PageObject\Exception\UnexpectedPageException) ```

I'm running tests with Mink on Saucelabs (Sauce Connect 4.4.6) At some point tests with firefox started to fail with `Expected to be on "http://localhost/owncloud-core/index.php/login" but found "" instead (SensioLabs\Behat\PageObjectExtension\PageObject\Exception\UnexpectedPageException)`...

Hi there, I have been thinking of using the page object pattern in a way to share the Objects with Symfony Webtestcases and found that the entire SensioLabs\Behat\PageObjectExtension\PageObject namespace could...

When I trying to use `open()` function then I see error message: ` "getDriver" method is not available on the LoginPage (BadMethodCallException)` I noticed that it's true, Page class doesn't...

For now we have two types of Elements, but they do the same things, and have the same purpose. First of all Elements configuration must be unified. I suggest to...

Sometimes we have elements that have very same logic but different parameters describes them so its impossible to get them directly from Page Object. It would be nice to have...

I have come across this issue when using multiple sessions in mink. Instantiate() method is restricted by Factory interface and cannot pass session as parameter. It would be very useful...