Created
October 29, 2019 18:49
-
-
Save sfdcale/4b6c989287ffbd3b4aaa799aef2689ae to your computer and use it in GitHub Desktop.
This prints all test class names while keeping apex test execution opened.
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
| var classnamescommaseperated = ''; document.querySelectorAll('div[class="x-grid3-cell-inner x-grid3-col-1"][unselectable="on"]').forEach((obj) => {classnamescommaseperated = classnamescommaseperated + ',' + obj.innerText;}); console.log(classnamescommaseperated); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment