-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# PageObjectExtension | ||
|
||
Provides default classes for Page object pattern in Behat: | ||
|
||
* `Page` - represents specific page on web, API etc. | ||
* `Element` - represents part of the page | ||
|
||
## Installation | ||
|
||
```bash | ||
composer require friends-of-behat/page-object-extension --dev | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
"name": "friends-of-behat/page-object-extension", | ||
"description": "Provides default classes for Page object pattern in Behat", | ||
"type": "library", | ||
"license": "MIT",, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Mateusz Zalewski", | ||
"email": "[email protected]" | ||
"email": "[email protected]", | ||
"homepage": "http://mpzalewski.com.pl" | ||
} | ||
], | ||
"require": { | ||
|