-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
commit dfab927 contains a reference to basestring, which is not in Python 3 #1820
Comments
Confirmed also in Linux Mint 17, python 3.4.3, selenium 2.53.0 |
Looks like other files that use try:
basestring
except NameError: # Python 3.x
basestring = str |
I've created a PR to fix this issue, however the CI checks are failing for other reasons. |
FYI: If you want to test whether something is one of |
I confirmed that my tests are passing now with Selenium 2.53.1. |
OS: Ubuntu 14.04
Selenium Version: 2.53.0
Browser: Firefox
Browser Version: 45.0+build2-0ubuntu0.14.04.1
It looks like commit dfab927 introduced a reference to
basestring
, which does not exist in Python 3.4.3.With
Dockerfile
:And this
repro.py
mode 755:Run:
And see:
...which wasn't happening yesterday, before the release of 2.53.0.
The text was updated successfully, but these errors were encountered: