From 0ef94a493bd6b07d1b745fe71b80aa26ede458e3 Mon Sep 17 00:00:00 2001 From: feder-cr Date: Mon, 5 Aug 2024 01:38:42 +0100 Subject: [PATCH] add sleep --- linkedIn_easy_applier.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linkedIn_easy_applier.py b/linkedIn_easy_applier.py index 51cb9c8..3cce5f3 100644 --- a/linkedIn_easy_applier.py +++ b/linkedIn_easy_applier.py @@ -103,7 +103,9 @@ class LinkedInEasyApplier: button_text = next_button.text.lower() if 'submit application' in button_text: self._unfollow_company() + time.sleep(random.uniform(1.5, 2.5)) next_button.click() + time.sleep(random.uniform(1.5, 2.5)) return True time.sleep(random.uniform(1.5, 2.5)) next_button.click()