gitextract_83h9li4j/ ├── .gitattributes ├── .gitignore ├── .readthedocs.yaml ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── docs/ │ ├── Makefile │ ├── README.md │ ├── api.rst │ ├── cheatsheet.md │ ├── conf.py │ ├── contributors.rst │ ├── index.rst │ ├── installation.rst │ └── make.bat ├── helium/ │ ├── __init__.py │ └── _impl/ │ ├── __init__.py │ ├── match_type.py │ ├── selenium_wrappers.py │ └── util/ │ ├── __init__.py │ ├── dictionary.py │ ├── geom.py │ ├── html.py │ ├── inspect_.py │ ├── lang.py │ ├── path.py │ ├── system.py │ └── xpath.py ├── requirements/ │ ├── base.txt │ ├── docs.txt │ └── test.txt ├── setup.py └── tests/ ├── __init__.py ├── api/ │ ├── __init__.py │ ├── data/ │ │ ├── default.css │ │ ├── js/ │ │ │ ├── jquery.ui-contextmenu.js │ │ │ └── util.js │ │ ├── test_alert.html │ │ ├── test_aria.html │ │ ├── test_click.html │ │ ├── test_doubleclick.html │ │ ├── test_drag/ │ │ │ ├── default.html │ │ │ ├── html5.html │ │ │ └── test_drag.css │ │ ├── test_file_upload/ │ │ │ └── test_file_upload.html │ │ ├── test_gui_elements.html │ │ ├── test_gui_elements_iframe.html │ │ ├── test_hover.html │ │ ├── test_iframe/ │ │ │ ├── iframe.html │ │ │ ├── main.html │ │ │ └── nested_iframe.html │ │ ├── test_implicit_wait.html │ │ ├── test_leaked_password.html │ │ ├── test_point.html │ │ ├── test_rightclick.html │ │ ├── test_scroll.html │ │ ├── test_start_go_to.html │ │ ├── test_tables.html │ │ ├── test_text_impl.html │ │ ├── test_wait_until.html │ │ ├── test_window/ │ │ │ ├── popup.html │ │ │ └── test_window.html │ │ ├── test_window_handling/ │ │ │ ├── main.html │ │ │ ├── main_immediate_popup.html │ │ │ └── popup.html │ │ └── test_write.html │ ├── test_alert.py │ ├── test_aria.py │ ├── test_chrome_options.py │ ├── test_click.py │ ├── test_doubleclick.py │ ├── test_drag.py │ ├── test_file_upload.py │ ├── test_find_all.py │ ├── test_gui_elements.py │ ├── test_highlight.py │ ├── test_hover.py │ ├── test_iframe.py │ ├── test_implicit_wait.py │ ├── test_kill_service_at_exit.py │ ├── test_kill_service_at_exit_chrome.py │ ├── test_leaked_password.py │ ├── test_no_driver.py │ ├── test_point.py │ ├── test_press.py │ ├── test_repr.py │ ├── test_rightclick.py │ ├── test_s.py │ ├── test_scroll.py │ ├── test_start_go_to.py │ ├── test_tables.py │ ├── test_text_impl.py │ ├── test_wait_until.py │ ├── test_window.py │ ├── test_window_handling.py │ ├── test_write.py │ └── util.py └── unit/ ├── __init__.py └── test__impl/ ├── __init__.py ├── test_selenium_wrappers.py └── test_util/ ├── __init__.py ├── test_dictionary.py ├── test_html.py └── test_xpath.py