(location, name)
| 2047 | |
| 2048 | |
| 2049 | def _special_binary_exists(location, name): |
| 2050 | filename = str(location).split("/")[-1].split("\\")[-1] |
| 2051 | return ( |
| 2052 | location |
| 2053 | and str(name).lower() in filename.lower() |
| 2054 | and os.path.exists(location) |
| 2055 | ) |
| 2056 | |
| 2057 | |
| 2058 | def _repair_chromedriver(chrome_options, headless_options, mcv=None): |
no outgoing calls
no test coverage detected
searching dependent graphs…