-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseek.js
25 lines (21 loc) · 791 Bytes
/
seek.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// ==UserScript==
// @name seek
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.seek.com.au/job/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=seek.com.au
// @grant none
// ==/UserScript==
for(x of document.getElementsByTagName('a')) if(x.href.endsWith('/apply')) x.click()
setInterval(function(){
document.querySelector('[data-testid=continue-button]').click()
},3333)
setInterval(function(){
document.querySelector('[id=newToWorkforce]').click()
document.querySelector('[data-testid=continue-button]').click()
},3333)
setInterval(function(){
document.querySelector('[data-testid=review-submit-application]').click()
},3333)