├── .gitignore ├── README.rst ├── another_examples └── screenshot.py ├── interacting_with_elements └── search_to_get_the_answer_to_life_the_universe_and_everything.py ├── javascript └── executing_javascript_send_and_get_the_data.py ├── mouse_interactions └── test_if_element_is_visible_when_the_mouse_is_over.py ├── specific_examples ├── enter_in_restricted_area_then_create_a_poll_and_delete_it.py ├── test_if_google_present_the_captcha_after_many_attempts_to_login.py └── test_the_search_of_my_website.py └── visiting_links ├── test_the_links_from_one_page.py └── visit_the_page_and_get_the_info.py /.gitignore: -------------------------------------------------------------------------------- 1 | chromedriver.log -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/README.rst -------------------------------------------------------------------------------- /another_examples/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/another_examples/screenshot.py -------------------------------------------------------------------------------- /interacting_with_elements/search_to_get_the_answer_to_life_the_universe_and_everything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/interacting_with_elements/search_to_get_the_answer_to_life_the_universe_and_everything.py -------------------------------------------------------------------------------- /javascript/executing_javascript_send_and_get_the_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/javascript/executing_javascript_send_and_get_the_data.py -------------------------------------------------------------------------------- /mouse_interactions/test_if_element_is_visible_when_the_mouse_is_over.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/mouse_interactions/test_if_element_is_visible_when_the_mouse_is_over.py -------------------------------------------------------------------------------- /specific_examples/enter_in_restricted_area_then_create_a_poll_and_delete_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/specific_examples/enter_in_restricted_area_then_create_a_poll_and_delete_it.py -------------------------------------------------------------------------------- /specific_examples/test_if_google_present_the_captcha_after_many_attempts_to_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/specific_examples/test_if_google_present_the_captcha_after_many_attempts_to_login.py -------------------------------------------------------------------------------- /specific_examples/test_the_search_of_my_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/specific_examples/test_the_search_of_my_website.py -------------------------------------------------------------------------------- /visiting_links/test_the_links_from_one_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/visiting_links/test_the_links_from_one_page.py -------------------------------------------------------------------------------- /visiting_links/visit_the_page_and_get_the_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasmiranda/splinter-examples/HEAD/visiting_links/visit_the_page_and_get_the_info.py --------------------------------------------------------------------------------