Skip to content

Commit

Permalink
skip emitting keyboard events on EASE page
Browse files Browse the repository at this point in the history
  • Loading branch information
pkage committed Oct 19, 2019
1 parent cd43c63 commit c9a8fd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scrape.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ module.exports = (opts = {}) => {
.goto(`https://www.eusa.ed.ac.uk/organisation/memberlist/${orgID}/?sort=groups`)
.click('.student-login-block')
.wait('#login')
.type('#login', opts.auth.email)
.type('#password', opts.auth.password)
.insert('#login', opts.auth.email)
.insert('#password', opts.auth.password)
.click('[value=" Login now "]')
.wait('.member_list_group')
.evaluate(node_context => {
Expand Down

0 comments on commit c9a8fd3

Please sign in to comment.