Skip to content

Instantly share code, notes, and snippets.

@ku
Last active October 11, 2017 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ku/f410d98b9358429749f3c1d3344b9d60 to your computer and use it in GitHub Desktop.
Save ku/f410d98b9358429749f3c1d3344b9d60 to your computer and use it in GitHub Desktop.
for ( tr of document.querySelectorAll('tr[class=" "]') ) {
const s = tr.querySelector('select')
if (!s) continue;
const a = tr.querySelector('a')
a.click();
var [from, to] = tr.querySelectorAll('td.td-attendance-time input')
from.value = '10:00';
to.value = '19:00';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment