Projects
Kolab:16
python-selenium
selenium-use-without-bundled-libs.patch
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File selenium-use-without-bundled-libs.patch of Package python-selenium
diff --git a/py/selenium/webdriver/firefox/firefox_binary.py b/py/selenium/webdriver/firefox/firefox_binary.py index 7bb5e9b..f321844 100755 --- a/py/selenium/webdriver/firefox/firefox_binary.py +++ b/py/selenium/webdriver/firefox/firefox_binary.py @@ -182,9 +182,12 @@ class FirefoxBinary(object): library_path = os.path.join(profile.path, path) os.makedirs(library_path) import shutil - shutil.copy(os.path.join(os.path.dirname(__file__), path, - self.NO_FOCUS_LIBRARY_NAME), - library_path) + try: + shutil.copy(os.path.join(os.path.dirname(__file__), path, + self.NO_FOCUS_LIBRARY_NAME), + library_path) + except: + pass # A Man's Gotta Do ... built_path += library_path + ":" return built_path
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.