Created
February 17, 2015 10:57
-
-
Save abhiomkar/b3b3798a5ede9e3e4c88 to your computer and use it in GitHub Desktop.
Laps Online (Apply Leave Automation)
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
var d = '01 Jan 2015'; | |
document.querySelector('#toDate').value = d; | |
document.querySelector('#fromDate').value = d; | |
// Annual Leave | |
document.querySelector('#leaveTypeCategory').value = 10; | |
// Work from home | |
// document.querySelector('#leaveTypeCategory').value = 17; | |
document.querySelector("textarea[name='contactDetails']").innerHTML = '9876543210'; | |
document.querySelector('.footer #button a').click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment