Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

:microscope: - experimental

## [2.8.0]
- :rocket: improved logging to display full path

## [2.7.1]
- :rocket: updated dependencies

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qavajs/steps-playwright",
"version": "2.7.1",
"version": "2.8.0",
"description": "steps to interact with playwright",
"main": "./index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/pageObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function element(this: any, path: string): Locator {
argument: item.argument
}); break;
}
logger.log(`${item.alias} -> ${current}`);
}
logger.log(`${path} -> ${current}`);
return current
}