-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasyapplybot.py
More file actions
545 lines (458 loc) · 22.6 KB
/
easyapplybot.py
File metadata and controls
545 lines (458 loc) · 22.6 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
import time, random, os, csv, platform
import logging
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait, Select
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.chrome.options import Options
from bs4 import BeautifulSoup
import pandas as pd
import pyautogui
from fake_useragent import UserAgent
import re
import yaml
from datetime import datetime, timedelta
import chromedriver_autoinstaller
from urllib.parse import urlparse, parse_qs
log = logging.getLogger(__name__)
chromedriver_autoinstaller.install() # Check if the current version of chromedriver exists
# and if it doesn't exist, download it automatically,
# then add chromedriver to path
ua = UserAgent()
user_agent = ua.random
options = Options()
# Disable webdriver flags or you will be easily detectable
options.add_argument("--start-maximized")
options.add_argument("--ignore-certificate-errors")
options.add_argument('--no-sandbox')
options.add_argument("--disable-extensions")
options.add_argument("--disable-blink-features")
options.add_argument(f'--user-agent={user_agent}')
options.add_argument('--disable-blink-features=AutomationControlled')
options.add_experimental_option("useAutomationExtension", False)
options.add_experimental_option("excludeSwitches",["enable-automation"])
# todo: running on selenium grid doesn't work atm due to pytautogui lock avoidance
# driver = webdriver.Remote(command_executor='http://localhost:4444', options=options)
driver = webdriver.Chrome(options=options)
def setupLogger() -> None:
dt: str = datetime.strftime(datetime.now(), "%m_%d_%y %H_%M_%S_")
if not os.path.isdir('./logs'):
os.mkdir('./logs')
logging.basicConfig(filename=('./logs/' + str(dt) + 'applyJobs.log'), filemode='w',
format='%(asctime)s::%(name)s::%(levelname)s::%(message)s', datefmt='./logs/%d-%b-%y %H:%M:%S')
log.setLevel(logging.DEBUG)
c_handler = logging.StreamHandler()
c_handler.setLevel(logging.DEBUG)
c_format = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s', '%H:%M:%S')
c_handler.setFormatter(c_format)
log.addHandler(c_handler)
class EasyApplyBot:
setupLogger()
# MAX_SEARCH_TIME is 10 hours by default, feel free to modify it
MAX_SEARCH_TIME = 20 * 60 * 60
def __init__(self,
username,
password,
phone_number,
uploads={},
filename='output.csv',
blacklist=[],
blackListTitles=[]) -> None:
log.info("Welcome to Easy Apply Bot")
dirpath: str = os.getcwd()
log.info("current directory is : " + dirpath)
self.uploads = uploads
past_ids: list | None = self.get_appliedIDs(filename)
self.appliedJobIDs: list = past_ids if past_ids != None else []
self.filename: str = filename
self.browser = driver
self.wait = WebDriverWait(self.browser, 30)
self.blacklist = blacklist
self.blackListTitles = blackListTitles
self.start_linkedin(username, password)
self.phone_number = phone_number
self.checked_invalid = False
def get_appliedIDs(self, filename) -> list | None:
try:
df = pd.read_csv(filename,
header=None,
names=['timestamp', 'jobID', 'job', 'company', 'attempted', 'result'],
lineterminator='\n',
encoding='utf-8')
df['timestamp'] = pd.to_datetime(df['timestamp'], format="%Y-%m-%d %H:%M:%S")
df = df[df['timestamp'] > (datetime.now() - timedelta(days=2))]
jobIDs: list = list(df.jobID)
log.info(f"{len(jobIDs)} jobIDs found")
return jobIDs
except Exception as e:
log.info(str(e) + " jobIDs could not be loaded from CSV {}".format(filename))
return None
def start_linkedin(self, username, password) -> None:
log.info("Logging in.....Please wait :) ")
self.browser.get("https://www.linkedin.com/login?trk=guest_homepage-basic_nav-header-signin")
try:
user_field = self.browser.find_element("id","username")
pw_field = self.browser.find_element("id","password")
login_button = driver.find_element(By.CLASS_NAME, "btn__primary--large")
user_field.send_keys(username)
user_field.send_keys(Keys.TAB)
time.sleep(2)
pw_field.send_keys(password)
time.sleep(2)
login_button.click()
time.sleep(3)
except TimeoutException:
log.info("TimeoutException! Username/password field or login button not found")
def fill_data(self) -> None:
self.browser.set_window_size(1, 1)
self.browser.set_window_position(2000, 2000)
def start_apply(self, positions, locations) -> None:
start: float = time.time()
self.fill_data()
combos: list = []
while len(combos) < len(positions) * len(locations):
position = positions[random.randint(0, len(positions) - 1)]
location = locations[random.randint(0, len(locations) - 1)]
combo: tuple = (position, location)
if combo not in combos:
combos.append(combo)
log.info(f"Applying to {position}: {location}")
location = "&location=" + location
self.applications_loop(position, location)
if len(combos) > 500:
break
def applications_loop(self, position, location):
count_application = 0
count_job = 0
jobs_per_page = 0
start_time: float = time.time()
log.info("Looking for jobs.. Please wait..")
self.browser.set_window_position(1, 1)
self.browser.maximize_window()
self.browser, _ = self.next_jobs_page(position, location, jobs_per_page)
log.info("Looking for jobs.. Please wait..")
while time.time() - start_time < self.MAX_SEARCH_TIME:
print(driver.current_url)
if 'linkedin' not in driver.current_url:
driver.switch_to.window(driver.window_handles[0])
try:
log.info(f"{(self.MAX_SEARCH_TIME - (time.time() - start_time)) // 60} minutes left in this search")
# sleep to make sure everything loads, add random to make us look human.
randoTime: float = random.uniform(3.5, 4.9)
log.debug(f"Sleeping for {round(randoTime, 1)}")
time.sleep(randoTime)
self.load_page(sleep=1)
# get job links, (the following are actually the job card objects)
links = self.browser.find_elements("xpath",
'//div[@data-job-id]'
)
if len(links) == 0:
log.debug("No links found")
break
IDs: list = []
# children selector is the container of the job cards on the left
for link in links:
# Find anchor tags within each link
children = link.find_elements(
"xpath", './/a[contains(@class, "job-card-container__link")]'
)
for child in children:
href = child.get_attribute("href")
if href:
# Extract the job ID from the href
parsed_url = urlparse(href)
job_id = parsed_url.path.split('/')[-2] # Extract the job ID from the URL path
if job_id and int(job_id) not in self.blacklist:
IDs.append(int(job_id))
jobIDs: list = set(IDs)
# it assumed that 25 jobs are listed in the results window
if len(jobIDs) == 0 and len(IDs) > 23:
jobs_per_page = jobs_per_page + 25
count_job = 0
self.avoid_lock()
self.browser, jobs_per_page = self.next_jobs_page(position,
location,
jobs_per_page)
# loop over IDs to apply
for i, jobID in enumerate(jobIDs):
count_job += 1
self.get_job_page(jobID)
button = self.get_easy_apply_button()
if button is not False:
string_easy = "* has Easy Apply Button"
log.info("Clicking the EASY apply button")
time.sleep(3)
self.fill_out_phone_number()
result: bool = self.send_resume()
count_application += 1
else:
log.info("The button does not exist.")
string_easy = "* Doesn't have Easy Apply Button"
result = False
position_number: str = str(count_job + jobs_per_page)
log.info(f"\nPosition {position_number}:\n {self.browser.title} \n {string_easy} \n")
self.write_to_file(button, jobID, self.browser.title, result)
# sleep every 20 applications
if count_application != 0 and count_application % 20 == 0:
sleepTime: int = random.randint(100, 300)
log.info(f"""********count_application: {count_application}************\n\n
Time for a nap - see you in:{int(sleepTime / 60)} min
****************************************\n\n""")
time.sleep(sleepTime)
# go to new page if all jobs are done
if count_job == len(jobIDs):
jobs_per_page = jobs_per_page + 25
count_job = 0
log.info("""****************************************\n\n
Going to next jobs page, YEAAAHHH!!
****************************************\n\n""")
self.avoid_lock()
self.browser, jobs_per_page = self.next_jobs_page(position,
location,
jobs_per_page)
except Exception as e:
log.error("Exception in main application loop", e)
print(e)
def write_to_file(self, button, jobID, browserTitle, result) -> None:
def re_extract(text, pattern):
target = re.search(pattern, text)
if target:
target = target.group(1)
return target
timestamp: str = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
attempted: bool = False if button == False else True
job = re_extract(browserTitle.split(' | ')[0], r"\(?\d?\)?\s?(\w.*)")
company = re_extract(browserTitle.split(' | ')[1], r"(\w.*)")
toWrite: list = [timestamp, jobID, job, company, attempted, result]
with open(self.filename, 'a') as f:
writer = csv.writer(f)
writer.writerow(toWrite)
def get_job_page(self, jobID):
job: str = 'https://www.linkedin.com/jobs/view/' + str(jobID)
self.browser.get(job)
self.job_page = self.load_page(sleep=0.5)
return self.job_page
def get_easy_apply_button(self):
try:
button = self.browser.find_elements("xpath", '//*[contains(@aria-label, "Easy Apply to")]')
if len(button) == 0:
return False
javascript = """
let elements = Array.from(document.querySelectorAll('button[aria-label]'));
let targetElement = elements.find(el => el.getAttribute('aria-label').includes('Easy Apply to'));
if (targetElement) {
targetElement.click();
}
"""
self.browser.execute_script(javascript)
time.sleep(1)
return True
except Exception as e:
log.error("exception in get_easy_apply_button", e)
return False
def fill_out_phone_number(self):
def is_present(button_locator) -> bool:
return len(self.browser.find_elements(button_locator[0],
button_locator[1])) > 0
try:
next_locater = (By.CSS_SELECTOR,
"button[aria-label='Continue to next step']")
input_field = self.browser.find_element("xpath", "//input[contains(@id,'phoneNumber')]")
if input_field:
input_field.clear()
input_field.send_keys(self.phone_number)
time.sleep(random.uniform(4.5, 6.5))
next_locater = (By.CSS_SELECTOR,
"button[aria-label='Continue to next step']")
error_locator = (By.CLASS_NAME,
"artdeco-inline-feedback__message")
# Click Next or submitt button if possible
button: None = None
if is_present(next_locater):
button: None = self.wait.until(EC.element_to_be_clickable(next_locater))
if is_present(error_locator):
for element in self.browser.find_elements(error_locator[0],
error_locator[1]):
text = element.text
if "Please enter" in text:
button = None
break
if button:
button.click()
time.sleep(random.uniform(1.5, 2.5))
# if i in (3, 4):
# submitted = True
# if i != 2:
# break
except:
log.debug(f"Could not find phone number field")
def send_resume(self) -> bool:
def is_present(button_locator) -> bool:
return len(self.browser.find_elements(button_locator[0],
button_locator[1])) > 0
def has_errors() -> bool:
return len(self.browser.find_elements(By.XPATH, '//*[contains(@type, "error-pebble-icon")]'))
try:
time.sleep(random.uniform(1.5, 2.5))
next_locater = (By.CSS_SELECTOR,
"button[aria-label='Continue to next step']")
review_locater = (By.CSS_SELECTOR,
"button[aria-label='Review your application']")
submit_locater = (By.CSS_SELECTOR,
"button[aria-label='Submit application']")
submit_application_locator = (By.CSS_SELECTOR,
"button[aria-label='Submit application']")
error_locator = (By.CLASS_NAME,
"artdeco-inline-feedback__message")
follow_locator = (By.CSS_SELECTOR, "label[for='follow-company-checkbox']")
submitted = False
while True:
button: None = None
buttons: list = [next_locater, review_locater, follow_locator,
submit_locater, submit_application_locator]
for i, button_locator in enumerate(buttons):
if is_present(button_locator) and not has_errors():
button: None = self.wait.until(EC.element_to_be_clickable(button_locator))
if is_present(error_locator):
try:
for element in self.browser.find_elements(error_locator[0],
error_locator[1]):
text = element.text
# if ("Please enter" in text or "Please make" in text or "Enter a" in text) and self.checked_invalid:
# button = None
# break
if ("Please enter" in text or "Please make" in text or "Enter a" in text) and not self.checked_invalid:
self.fill_invalids()
#break
except Exception as e:
log.info(e)
if button:
button.click()
time.sleep(random.uniform(1.5, 2.5))
if i in (3, 4):
submitted = True
if i != 2:
break
# if button == None:
# self.checked_invalid = False
# log.info("Could not complete submission")
# break
if submitted:
self.checked_invalid = False
log.info("Application Submitted")
break
time.sleep(random.uniform(1.5, 2.5))
except Exception as e:
log.info(e)
log.info("cannot apply to this job")
raise (e)
return submitted
def fill_invalids(self):
# self.checked_invalid = True
text_inputs = self.browser.find_elements(By.XPATH, '//input[contains(@class, "fb-dash-form-element")]')
for input in text_inputs:
input.clear()
input.send_keys('3')
time.sleep(1)
# todo: don't select yes for requiring visa....
radio_inputs = self.browser.find_elements(By.XPATH, '//input[@data-test-text-selectable-option__input="Yes"]')
for input in radio_inputs:
loc = input.location
element_to_click = driver.execute_script(
"return document.elementFromPoint(arguments[0], arguments[1]);",
loc['x'],
loc['y'])
element_to_click.click()
time.sleep(1)
try:
select_inputs = self.browser.find_elements(By.CSS_SELECTOR, 'select[aria-required="true"]')
for input in select_inputs:
select_obj = Select(input)
options = select_obj.options
for option in options:
if "yes" in option.text.lower() or "native" in option.text.lower():
select_obj.select_by_visible_text(option.text)
# else:
# select_obj.select_by_index(0)
except Exception as e:
log.error('error doing select inputs', e)
# try:
# select_inputs = self.browser.find_elements(By.XPATH, '//select[contains(@class, "fb-dash-form-element__error-field"]')
# for input in select_inputs:
# input.select_by_value("Yes")
# except:
# print('no select inputs found')
# try:
# radio_inputs = self.browser.find_elements(By.XPATH, "//input[contains(@class, 'fb-form-element__checkbox']")
# for radio in radio_inputs:
# radio.click()
# except:
# print('no radios found')
def load_page(self, sleep=1):
scroll_page = 0
while scroll_page < 4000:
self.browser.execute_script("window.scrollTo(0," + str(scroll_page) + " );")
scroll_page += 200
time.sleep(sleep)
if sleep != 1:
self.browser.execute_script("window.scrollTo(0,0);")
time.sleep(sleep * 3)
page = BeautifulSoup(self.browser.page_source, "lxml")
return page
def avoid_lock(self) -> None:
pyautogui.FAILSAFE = False
x, _ = pyautogui.position()
pyautogui.moveTo(x + 200, pyautogui.position().y, duration=1.0)
pyautogui.moveTo(x, pyautogui.position().y, duration=0.5)
pyautogui.keyDown('ctrl')
pyautogui.press('esc')
pyautogui.keyUp('ctrl')
time.sleep(0.5)
pyautogui.press('esc')
def next_jobs_page(self, position, location, jobs_per_page):
self.browser.get(
"https://www.linkedin.com/jobs/search/?f_LF=f_AL&keywords=" +
position + location + "&sortBy=DD&start=" + str(jobs_per_page))
self.avoid_lock()
log.info("Lock avoided.")
self.load_page()
return (self.browser, jobs_per_page)
def finish_apply(self) -> None:
self.browser.close()
if __name__ == '__main__':
with open("./config.yaml", 'r') as stream:
try:
parameters = yaml.safe_load(stream)
except yaml.YAMLError as exc:
raise exc
assert len(parameters['positions']) > 0
assert len(parameters['locations']) > 0
assert parameters['username'] is not None
assert parameters['password'] is not None
assert parameters['phone_number'] is not None
if 'uploads' in parameters.keys() and type(parameters['uploads']) == list:
raise Exception("uploads read from the config file appear to be in list format" +
" while should be dict. Try removing '-' from line containing" +
" filename & path")
log.info({k: parameters[k] for k in parameters.keys() if k not in ['username', 'password']})
output_filename: list = [f for f in parameters.get('output_filename', ['output.csv']) if f != None]
output_filename: list = output_filename[0] if len(output_filename) > 0 else 'output.csv'
blacklist = parameters.get('blacklist', [])
blackListTitles = parameters.get('blackListTitles', [])
uploads = {} if parameters.get('uploads', {}) == None else parameters.get('uploads', {})
for key in uploads.keys():
assert uploads[key] != None
bot = EasyApplyBot(parameters['username'],
parameters['password'],
parameters['phone_number'],
uploads=uploads,
filename=output_filename,
blacklist=blacklist,
blackListTitles=blackListTitles
)
locations: list = [l for l in parameters['locations'] if l != None]
positions: list = [p for p in parameters['positions'] if p != None]
bot.start_apply(positions, locations)