snapfast / AutoMates

a script to apply for jobs, swipe on bumble, and more.
23 stars 9 forks source link

Selenuim not detecting Apply button #6

Open MightbeMike opened 7 months ago

MightbeMike commented 7 months ago

Am I suppoose to config on my end?

the script works great for Linked in up untile you click apply for easy apply or otherwise. they may opf changed the button sense you last applied this script. as of right now its not detected

MrDangwal commented 5 months ago

just update the element in this function

def apply_job(self):

Section to click the Easy Apply Button on job page

    gerat = True
    while gerat:
        try:
            sleep(3)
            self.driver.find_element(by=By.CLASS_NAME, value="**jobs-apply-button--top-card**").click()
            print('Clicked the Easy Button')
            gerat = False
        except NoSuchElementException:
            print('Cannot find the button, click Another Job')
            break
        except NoSuchWindowException as win:
            print("no window bro... ok, I believe you closed it.", win)
            gerat = False