Skip to content

Instantly share code, notes, and snippets.

@aectann
Last active August 29, 2015 14:10
Show Gist options
  • Save aectann/e05be383b8a8c79cebe8 to your computer and use it in GitHub Desktop.
Save aectann/e05be383b8a8c79cebe8 to your computer and use it in GitHub Desktop.
Harvest time entry.
var days = ['Monday','Tuesday','Wednesday','Thursday','Friday'];
var i;
for (i in days) {
var day = days[i];
$('.test-'+day).last().trigger('click');
$('.js-new-time-entry').last().trigger('click');
$('#entry-duration').last().val('7.6');
$('.js-save').trigger('click');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment