Last active
January 6, 2019 23:38
-
-
Save ianalexander/4e4bc84602e6f884d49c50c16da87495 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
| var a = $('ol.empReviews li.empReview').map(function (){ | |
| return [[ | |
| $(this).find('span.reviewer').text(), | |
| $(this).find('time.date').text(), | |
| $(this).find('.interviewOutcomes .flex-grid div span:eq(0)').text(), | |
| $(this).find('.interviewOutcomes .flex-grid div span:eq(1)').text(), | |
| $(this).find('.interviewOutcomes .flex-grid div span:eq(2)').text(), | |
| $(this).find('.interviewDetails').text(), | |
| $(this).find('.interviewQuestions span.interviewQuestion').text().replace('Answer Question', '') | |
| ]]; | |
| }).get(); | |
| var b = a.map((e) => e.join('\t')).join('\n'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment