gitextract_fn7bqonu/ ├── .flake8 ├── .gitbook.yaml ├── .github/ │ └── workflows/ │ ├── publish-pylenium.yml │ └── test-pylenium.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .vscode/ │ └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conftest.py ├── docker-compose.yml ├── docs/ │ ├── README.md │ ├── SUMMARY.md │ ├── changelog.md │ ├── cli/ │ │ ├── pylenium-cli.md │ │ └── report-portal.md │ ├── configuration/ │ │ ├── driver.md │ │ ├── logging.md │ │ ├── pylenium.json.md │ │ └── report-portal.md │ ├── contribute/ │ │ └── clone-and-setup-the-project.md │ ├── element-commands/ │ │ ├── check.md │ │ ├── children.md │ │ ├── click.md │ │ ├── css_value.md │ │ ├── deselect.md │ │ ├── double_click.md │ │ ├── drag_to.md │ │ ├── drag_to_element.md │ │ ├── first.md │ │ ├── get_attribute.md │ │ ├── get_property.md │ │ ├── hover.md │ │ ├── is_checked.md │ │ ├── is_displayed.md │ │ ├── is_empty.md │ │ ├── is_enabled.md │ │ ├── is_selected.md │ │ ├── last.md │ │ ├── length.md │ │ ├── open_shadow_dom.md │ │ ├── parent.md │ │ ├── right_click.md │ │ ├── screenshot.md │ │ ├── scroll_into_view.md │ │ ├── select.md │ │ ├── select_many.md │ │ ├── should.md │ │ ├── siblings.md │ │ ├── submit.md │ │ ├── tag_name.md │ │ ├── text.md │ │ ├── type.md │ │ ├── uncheck.md │ │ └── webelement.md │ ├── examples/ │ │ └── test_sample.py │ ├── fixtures/ │ │ ├── axe.md │ │ ├── fake.md │ │ └── requests.md │ ├── getting-started/ │ │ ├── project-structure-with-pytest.md │ │ ├── setup-pytest.md │ │ ├── virtual-environments.md │ │ └── writing-tests-with-pylenium.md │ ├── guides/ │ │ ├── run-tests-in-containers.md │ │ └── run-tests-in-parallel.md │ ├── misc/ │ │ └── install-chromedriver.md │ └── pylenium-commands/ │ ├── commands.md │ ├── contains.md │ ├── delete_all_cookies.md │ ├── delete_cookie.md │ ├── execute_script.md │ ├── fake.md │ ├── find.md │ ├── find_xpath.md │ ├── get.md │ ├── get_cookie.md │ ├── get_cookies.md │ ├── get_xpath.md │ ├── go.md │ ├── maximize_window.md │ ├── quit.md │ ├── request.md │ ├── screenshot.md │ ├── scroll_to.md │ ├── set_cookie.md │ ├── should.md │ ├── switch_to.default_content.md │ ├── switch_to.frame.md │ ├── switch_to.parent_frame.md │ ├── switch_to.window.md │ ├── title.md │ ├── url.md │ ├── viewport.md │ ├── visit.md │ ├── wait.md │ ├── webdriver.md │ ├── window_handles.md │ ├── window_size.md │ └── xpath.md ├── poetry.toml ├── pylenium/ │ ├── __init__.py │ ├── a11y.py │ ├── cdp.py │ ├── config.py │ ├── driver.py │ ├── element.py │ ├── jquery.py │ ├── log.py │ ├── performance.py │ ├── scripts/ │ │ ├── __init__.py │ │ ├── allure_reporting.py │ │ ├── cli.py │ │ ├── cli_utils.py │ │ ├── conftest.py │ │ ├── drag_and_drop.js │ │ ├── load_jquery.js │ │ ├── pylenium.json │ │ └── pytest.ini │ ├── switch_to.py │ ├── utils.py │ ├── wait.py │ └── webdriver_factory.py ├── pylenium.json ├── pyproject.toml ├── pytest.ini └── tests/ ├── __init__.py ├── performance/ │ ├── test_cdp_performance.py │ └── test_performance.py ├── test_flows.py ├── ui/ │ ├── Get CRX.crx │ ├── test_element.py │ ├── test_element_actions.py │ └── test_pydriver.py └── unit/ ├── test_config.py ├── test_faker.py └── test_requests.py