()
| 703 | |
| 704 | |
| 705 | def get_package_location(): |
| 706 | # from pkg_resources import get_distribution |
| 707 | # location = get_distribution("seleniumbase").location |
| 708 | import os |
| 709 | import seleniumbase |
| 710 | |
| 711 | location = os.path.dirname(os.path.realpath(seleniumbase.__file__)) |
| 712 | if location.endswith("seleniumbase"): |
| 713 | location = location[0 : -len("seleniumbase")] # noqa: E203 |
| 714 | return location |
| 715 | |
| 716 | |
| 717 | def show_package_location(): |
no outgoing calls
no test coverage detected
searching dependent graphs…