This file contains hidden or 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
| [ | |
| { | |
| "id": 1, | |
| "product_id": 75, | |
| "order_date:": "21/04/2020", | |
| "type": "single" | |
| }, { | |
| "id": 2, | |
| "product_id": 25, | |
| "order_date:": "29/02/2021", |
This file contains hidden or 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
| 1. Use git log --show-signature to see what commigs you have | |
| 2. Get the commit hash of the last commit you want to sign (this will make the command stop at the given hash, will include it in the new signed commit) | |
| GIT_EDITOR=true git rebase --exec 'git commit --amend --no-edit -n -S' -i LAST_COMMIT_HASH_YOU_WANT_TO_SIGN | |
This file contains hidden or 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
| const mouseOver = (firstArg) => { | |
| const event = document.createEvent('MouseEvents') | |
| event.initEvent( 'mouseover', true, true ) | |
| return firstArg.dispatchEvent(mouseEventObj) | |
| } | |
| // Then in the test | |
| driver.executeScript(mouseOver, element) |