-
Notifications
You must be signed in to change notification settings - Fork 13
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
Created form_example.py #22
Conversation
The Nerodia equivalent Watirs example from http://watir.com/guides/form-example/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but please address the flake8
issues: https://travis-ci.org/watir/nerodia/jobs/533491320
examples/form_example.py
Outdated
# Based on http://watir.com/guides/form-example/ | ||
|
||
from nerodia.browser import Browser | ||
#from selenium.webdriver.common.keys import Keys #needed to send keys |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove unused import.
I don't know what a flake8 thing is. |
Flake8 is a library that checks against a style guide. This is checked every commit and it's failing on two items with your code: https://travis-ci.org/watir/nerodia/jobs/535363016#L242-L243 |
I think I finally got where to find the mistake |
I highlighted what needed to be fixed with the link https://travis-ci.org/watir/nerodia/jobs/535363016#L242-L243 You fixed one, the other is:
If you read that, it's saying |
Merged, thank you! |
The Nerodia equivalent Watirs example from http://watir.com/guides/form-example/