-
-
Notifications
You must be signed in to change notification settings - Fork 736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom locator playwright #2389
Merged
DavertMik
merged 10 commits into
codeceptjs:master
from
Georgegriff:custom_locator_playwright
May 13, 2020
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
35f6f3b
Makes suggested changes to have Chromium install
Georgegriff 8d581c1
Merge branch 'master' of github.com:Georgegriff/CodeceptJS
2b611d0
Merge branch 'master' of https://github.com/Codeception/CodeceptJS
f0c10e3
refactor playwright to fix custom locators with xpath
9b4a815
remove test modification
562d130
CI kick
22d0c73
Apply suggestions from code review
Georgegriff d60e3b8
fix flakey unit tests
196a623
Merge branch 'custom_locator_playwright' of github.com:Georgegriff/Co…
05678b8
ensure dont reset Locators
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,56 @@ | ||
<html> | ||
<head> | ||
<style> | ||
.invisible_button { display: none; } | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<div data-test-id="step_1" class="invisible_button">Step One Button</div> | ||
<div data-test-id="step_2" class="invisible_button">Step Two Button</div> | ||
<div data-test-id="step_3" class="invisible_button">Step Three Button</div> | ||
<div data-test-id="step_4" class="invisible_button">Steps Complete!</div> | ||
|
||
<script> | ||
/** | ||
* Utility Functions | ||
*/ | ||
|
||
function _prepareStepButtons() { | ||
['step_1', 'step_2', 'step_3'].forEach( function( id, index ) { | ||
var num = index + 2, | ||
nextIDNum = num.toString(); | ||
|
||
getByAttribute( id ).addEventListener( 'click', function( event ) { | ||
var nextID = 'step_' + nextIDNum; | ||
removeClass( getByAttribute( nextID ), 'invisible_button' ); | ||
}); | ||
}); | ||
} | ||
|
||
function getByAttribute( id ) { | ||
return document.querySelector( `[data-test-id="${id}"]` ); | ||
} | ||
|
||
function removeClass( el, cls ) { | ||
el.classList.remove( cls ); | ||
return el; | ||
} | ||
|
||
|
||
/** | ||
* Do Stuff | ||
*/ | ||
|
||
_prepareStepButtons(); | ||
|
||
setTimeout(function () { | ||
removeClass( getByAttribute('step_1'), 'invisible_button' ); | ||
}, 1000); | ||
|
||
|
||
</script> | ||
|
||
</body> | ||
</html> |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simplified the code path by just using waitForSelector, no need for a special xpath case