Created
February 27, 2019 17:26
-
-
Save StefanoChiodino/19cdee28fe01b7a74fc7d09928a12721 to your computer and use it in GitHub Desktop.
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
// Click actions dropdown. | |
$("#contentcolumn > div > div > form > div > div.umb-editor-header.umb-panel-header.ng-scope > div > div > div > div.umb-editor-header__actions-menu > div > a").click(); | |
setTimeout(() => | |
{ | |
// Click the delete item. | |
$("#contentcolumn > div > div > form > div > div.umb-editor-header.umb-panel-header.ng-scope > div > div > div > div.umb-editor-header__actions-menu > div > ul > li:nth-child(1) > a").click(); | |
setTimeout(() => | |
{ // Click checkbox to confirm. | |
$("#old-dialog-service > div > div > ng-switch > div > label > input").click(); | |
setTimeout(() => $("#old-dialog-service > div > div > ng-switch > div > div > div > div > a.btn.btn-primary.ng-scope > localize").click(), 200); | |
}, 200); | |
}, 300); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment