Skip to content

Commit e634a38

Browse files
Charles Laverylukeis
authored andcommitted
fixes non-relative import in chrome webdriver
this fixes an ImportError in the chrome webdriver python implementation. without this a ImportError No module named 'remote_connection' occurs Signed-off-by: Luke Inman-Semerau <[email protected]>
1 parent da0d5bd commit e634a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/chrome/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
# under the License.
1717

1818
import base64
19-
from remote_connection import ChromeRemoteConnection
2019
from selenium.webdriver.remote.command import Command
2120
from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver
2221
from selenium.common.exceptions import WebDriverException
22+
from .remote_connection import ChromeRemoteConnection
2323
from .service import Service
2424
from .options import Options
2525

0 commit comments

Comments
 (0)