MCPcopy Index your code
hub / github.com/appium/python-client / driver

Function driver

test/functional/flutter_integration/conftest.py:31–42  ·  view source on GitHub ↗

Create and configure Flutter driver for testing.

()

Source from the content-addressed store, hash-verified

29
30@pytest.fixture
31def driver() -> Generator['WebDriver', None, None]:
32 """Create and configure Flutter driver for testing."""
33 options = make_options()
34
35 client_config = AppiumClientConfig(remote_server_addr=SERVER_URL_BASE)
36 client_config.timeout = 600
37
38 driver = webdriver.Remote(options=options, client_config=client_config)
39
40 yield driver
41
42 driver.quit()
43
44
45@pytest.fixture

Callers

nothing calls this directly

Calls 2

AppiumClientConfigClass · 0.90
make_optionsFunction · 0.50

Tested by

no test coverage detected