NathanDuma / LinkedIn-Easy-Apply-Bot

Automate LinkedIn Easy Apply job applications and answer application-specific questions.
226 stars 86 forks source link

Auto-Selects that I am not 18 #14

Closed zachlucas1 closed 2 years ago

zachlucas1 commented 2 years ago

I started using this super cool program you made and one thing I noticed is that it auto-selects me as not being 18 years old on or before the start of the job. Just a small issue but it could potentially make me not qualified for any jobs it applies for. I could also be filling out the yaml file wrong but I am not sure. Let me know if this is a bug or a user error on my part!

Screen Shot 2021-12-29 at 12 07 05 AM
NathanDuma commented 2 years ago

Change line 350/351 in linkedineasyapply.py to this:

                    elif 'yes' in radio_options:
                        answer = 'yes'
                    else:
                        answer = radio_options[len(radio_options) - 1]

This will answer yes to everything.

zachlucas1 commented 2 years ago

Awesome, I will try that. Thanks for the quick response!