(self)
| 22 | |
| 23 | class BaseTestCase(object): |
| 24 | def setup_method(self) -> None: |
| 25 | client_config = AppiumClientConfig(remote_server_addr=SERVER_URL_BASE) |
| 26 | client_config.timeout = 600 |
| 27 | self.driver = webdriver.Remote( |
| 28 | SERVER_URL_BASE, options=Mac2Options().load_capabilities(get_desired_capabilities()), client_config=client_config |
| 29 | ) |
| 30 | |
| 31 | def teardown_method(self, method) -> None: # type: ignore |
| 32 | if not hasattr(self, 'driver'): |
nothing calls this directly
no test coverage detected