├── README.md ├── bin ├── chromedriver ├── chromedriver.exe ├── phantomjs └── phantomjs.exe ├── config.json ├── demo ├── apply_texas_form.json ├── autofill_forms_demo.py ├── common_form.json ├── data_mining_demo.py ├── demo.py ├── drag_drop_demo.py ├── gmail_form.json ├── keys_demo.py ├── live_form.json ├── reg_to_vot_form.json ├── reg_to_vot_form_2.json ├── yahoo_demo.py └── yahoo_form.json ├── design └── Design_Chart.png ├── pyChrome.py ├── src ├── browser.py ├── capture.py ├── combo.py ├── element.py ├── interaction.py ├── navigation.py ├── tab.py └── window.py └── test ├── Test_Results_macOS.html ├── Test_Results_macOS.pdf ├── Test_Results_win32.html ├── Test_Results_win32.pdf └── test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/README.md -------------------------------------------------------------------------------- /bin/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/bin/chromedriver -------------------------------------------------------------------------------- /bin/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/bin/chromedriver.exe -------------------------------------------------------------------------------- /bin/phantomjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/bin/phantomjs -------------------------------------------------------------------------------- /bin/phantomjs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/bin/phantomjs.exe -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/config.json -------------------------------------------------------------------------------- /demo/apply_texas_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/apply_texas_form.json -------------------------------------------------------------------------------- /demo/autofill_forms_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/autofill_forms_demo.py -------------------------------------------------------------------------------- /demo/common_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/common_form.json -------------------------------------------------------------------------------- /demo/data_mining_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/data_mining_demo.py -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/drag_drop_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/drag_drop_demo.py -------------------------------------------------------------------------------- /demo/gmail_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/gmail_form.json -------------------------------------------------------------------------------- /demo/keys_demo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/live_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/live_form.json -------------------------------------------------------------------------------- /demo/reg_to_vot_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/reg_to_vot_form.json -------------------------------------------------------------------------------- /demo/reg_to_vot_form_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/reg_to_vot_form_2.json -------------------------------------------------------------------------------- /demo/yahoo_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/yahoo_demo.py -------------------------------------------------------------------------------- /demo/yahoo_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/demo/yahoo_form.json -------------------------------------------------------------------------------- /design/Design_Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/design/Design_Chart.png -------------------------------------------------------------------------------- /pyChrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/pyChrome.py -------------------------------------------------------------------------------- /src/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/browser.py -------------------------------------------------------------------------------- /src/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/capture.py -------------------------------------------------------------------------------- /src/combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/combo.py -------------------------------------------------------------------------------- /src/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/element.py -------------------------------------------------------------------------------- /src/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/interaction.py -------------------------------------------------------------------------------- /src/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/navigation.py -------------------------------------------------------------------------------- /src/tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/tab.py -------------------------------------------------------------------------------- /src/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/src/window.py -------------------------------------------------------------------------------- /test/Test_Results_macOS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/test/Test_Results_macOS.html -------------------------------------------------------------------------------- /test/Test_Results_macOS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/test/Test_Results_macOS.pdf -------------------------------------------------------------------------------- /test/Test_Results_win32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/test/Test_Results_win32.html -------------------------------------------------------------------------------- /test/Test_Results_win32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/test/Test_Results_win32.pdf -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siversalih/pyChrome-Web-Automation/HEAD/test/test.py --------------------------------------------------------------------------------