-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
random.randint #1
Comments
I think the issue here is that I wrote elem_form_first_name.send_keys(first_name) It should have been elem_form_first_name.send_keys(letter) I shall update and fix this now. |
Fixed |
Where can I contact you? I would like to report something else. |
You can contact me through my email at amirmaula@outlook.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for letter in first_name:
time.sleep(random.randint(0, 1)) # sleep between 1 and 3 seconds
elem_form_first_name.send_keys(first_name)
It's time.sleep(random.randint(0, 1))
The text was updated successfully, but these errors were encountered: