wodsuz / EasyApplyJobsBot

A python bot to automatically apply all Linkedin,Glassdoor, etc Easy Apply jobs based on your preferences. Auto login, auto fill additional questions, apply automatically!
https://www.automated-bots.com/
Other
424 stars 141 forks source link

Security Verfication #25

Closed shrey8761 closed 9 months ago

shrey8761 commented 1 year ago

After Submiting Password, Verfication Window(Security Check) opens and hence

totalJobs = self.driver.find_element(By.XPATH,'//small').text

from here error starts coming (cant find element, as verfication window(Security Check) gets open up)).

simple solution- Can we introduce retry 2 times after every 60 seconds? Benefits-

  1. For any unexpected additional popup, we can manage manually, and after that bot will retry again for next step without exiting.
shrey8761 commented 1 year ago

In short - can we alter - Number_of_ Attempt to RETRY and TIME_INTERVAL between every Retry till last click of whole process

Vismay15 commented 1 year ago

@shrey8761 Were you able to fix this issue?

Kickbykick commented 1 year ago

Checking in for any updates to this issue, still having this issue on my side

Kickbykick commented 1 year ago

Hi there, I got it past this step by sleeping the code, try this after you get the url:

self.driver.get(url)
time.sleep(random.uniform(1.5, 2.5))
totalJobs = self.driver.find_element(By.XPATH,'//small').text 
Vismay15 commented 1 year ago

@Kickbykick Awesome, this fix is working!

wodsuz commented 9 months ago

Thanks merged this fix