├── .gitignore ├── COPYING.md ├── README.md ├── WebTools ├── .gitattributes ├── Browser.wl ├── Cookies.wl ├── Documentation │ └── English │ │ ├── Guides │ │ └── WebTools.nb │ │ ├── ReferencePages │ │ └── Symbols │ │ │ ├── DriverObject.nb │ │ │ ├── StartDriver.nb │ │ │ └── StopDriver.nb │ │ └── Tutorials │ │ └── WebTools.nb ├── Driver.wl ├── Driver │ ├── Chrome │ │ ├── Linux-x86-64 │ │ │ └── 2.37 │ │ │ │ └── chromedriver │ │ ├── MacOSX-x86-64 │ │ │ └── 2.37 │ │ │ │ └── chromedriver │ │ └── Windows-x86-64 │ │ │ └── 2.37 │ │ │ └── chromedriver.exe │ ├── Edge │ │ └── Windows-x86-64 │ │ │ ├── 15063 │ │ │ └── MicrosoftWebDriver.exe │ │ │ └── 16299 │ │ │ └── MicrosoftWebDriver.exe │ └── Firefox │ │ ├── Linux-x86-64 │ │ └── 0.20.0 │ │ │ └── geckodriver │ │ ├── MacOSX-x86-64 │ │ └── 0.20.0 │ │ │ └── geckodriver │ │ └── Windows-x86-64 │ │ └── 0.20.0 │ │ └── geckodriver.exe ├── Javascript.wl ├── Javascript │ ├── pagehtml.js │ ├── pagelinks.js │ └── pageurl.js ├── Messages.wl ├── PacletInfo.m ├── Page.wl ├── Usage.wl ├── Utilities.m ├── WebDriverAPI.m └── WebTools.m ├── install.wls ├── test.nb └── usage.nb /.gitignore: -------------------------------------------------------------------------------- 1 | *.paclet 2 | build 3 | -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/COPYING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/README.md -------------------------------------------------------------------------------- /WebTools/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/.gitattributes -------------------------------------------------------------------------------- /WebTools/Browser.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Browser.wl -------------------------------------------------------------------------------- /WebTools/Cookies.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Cookies.wl -------------------------------------------------------------------------------- /WebTools/Documentation/English/Guides/WebTools.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Documentation/English/Guides/WebTools.nb -------------------------------------------------------------------------------- /WebTools/Documentation/English/ReferencePages/Symbols/DriverObject.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Documentation/English/ReferencePages/Symbols/DriverObject.nb -------------------------------------------------------------------------------- /WebTools/Documentation/English/ReferencePages/Symbols/StartDriver.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Documentation/English/ReferencePages/Symbols/StartDriver.nb -------------------------------------------------------------------------------- /WebTools/Documentation/English/ReferencePages/Symbols/StopDriver.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Documentation/English/ReferencePages/Symbols/StopDriver.nb -------------------------------------------------------------------------------- /WebTools/Documentation/English/Tutorials/WebTools.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Documentation/English/Tutorials/WebTools.nb -------------------------------------------------------------------------------- /WebTools/Driver.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver.wl -------------------------------------------------------------------------------- /WebTools/Driver/Chrome/Linux-x86-64/2.37/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Chrome/Linux-x86-64/2.37/chromedriver -------------------------------------------------------------------------------- /WebTools/Driver/Chrome/MacOSX-x86-64/2.37/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Chrome/MacOSX-x86-64/2.37/chromedriver -------------------------------------------------------------------------------- /WebTools/Driver/Chrome/Windows-x86-64/2.37/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Chrome/Windows-x86-64/2.37/chromedriver.exe -------------------------------------------------------------------------------- /WebTools/Driver/Edge/Windows-x86-64/15063/MicrosoftWebDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Edge/Windows-x86-64/15063/MicrosoftWebDriver.exe -------------------------------------------------------------------------------- /WebTools/Driver/Edge/Windows-x86-64/16299/MicrosoftWebDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Edge/Windows-x86-64/16299/MicrosoftWebDriver.exe -------------------------------------------------------------------------------- /WebTools/Driver/Firefox/Linux-x86-64/0.20.0/geckodriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Firefox/Linux-x86-64/0.20.0/geckodriver -------------------------------------------------------------------------------- /WebTools/Driver/Firefox/MacOSX-x86-64/0.20.0/geckodriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Firefox/MacOSX-x86-64/0.20.0/geckodriver -------------------------------------------------------------------------------- /WebTools/Driver/Firefox/Windows-x86-64/0.20.0/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Driver/Firefox/Windows-x86-64/0.20.0/geckodriver.exe -------------------------------------------------------------------------------- /WebTools/Javascript.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Javascript.wl -------------------------------------------------------------------------------- /WebTools/Javascript/pagehtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Javascript/pagehtml.js -------------------------------------------------------------------------------- /WebTools/Javascript/pagelinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Javascript/pagelinks.js -------------------------------------------------------------------------------- /WebTools/Javascript/pageurl.js: -------------------------------------------------------------------------------- 1 | return window.location.href; 2 | -------------------------------------------------------------------------------- /WebTools/Messages.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Messages.wl -------------------------------------------------------------------------------- /WebTools/PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/PacletInfo.m -------------------------------------------------------------------------------- /WebTools/Page.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Page.wl -------------------------------------------------------------------------------- /WebTools/Usage.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Usage.wl -------------------------------------------------------------------------------- /WebTools/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/Utilities.m -------------------------------------------------------------------------------- /WebTools/WebDriverAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/WebDriverAPI.m -------------------------------------------------------------------------------- /WebTools/WebTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/WebTools/WebTools.m -------------------------------------------------------------------------------- /install.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/install.wls -------------------------------------------------------------------------------- /test.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/test.nb -------------------------------------------------------------------------------- /usage.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/webtools/HEAD/usage.nb --------------------------------------------------------------------------------