├── .gitignore ├── Demo ├── DelphiWebDriverDemo.Main.fmx ├── DelphiWebDriverDemo.Main.pas ├── DelphiWebDriverDemo.dpr ├── DelphiWebDriverDemo.dproj └── DelphiWebDriverDemo.res ├── License.txt ├── README.md └── Source ├── DelphiWebDriver.Core.BiDi.Commands.pas ├── DelphiWebDriver.Core.BiDi.pas ├── DelphiWebDriver.Core.Capabilities.pas ├── DelphiWebDriver.Core.Classic.Actions.pas ├── DelphiWebDriver.Core.Classic.Alert.pas ├── DelphiWebDriver.Core.Classic.Commands.pas ├── DelphiWebDriver.Core.Classic.Contexts.pas ├── DelphiWebDriver.Core.Classic.Cookies.pas ├── DelphiWebDriver.Core.Classic.Document.pas ├── DelphiWebDriver.Core.Classic.Element.pas ├── DelphiWebDriver.Core.Classic.Elements.pas ├── DelphiWebDriver.Core.Classic.Navigation.pas ├── DelphiWebDriver.Core.Classic.Screenshot.pas ├── DelphiWebDriver.Core.Classic.Timeouts.pas ├── DelphiWebDriver.Core.Classic.Wait.pas ├── DelphiWebDriver.Core.Classic.pas ├── DelphiWebDriver.Core.Events.pas ├── DelphiWebDriver.Core.Server.pas ├── DelphiWebDriver.Core.Sessions.pas ├── DelphiWebDriver.Core.pas ├── DelphiWebDriver.Interfaces.pas ├── DelphiWebDriver.Types.pas └── DelphiWebDriver.Websocket.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/DelphiWebDriverDemo.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Demo/DelphiWebDriverDemo.Main.fmx -------------------------------------------------------------------------------- /Demo/DelphiWebDriverDemo.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Demo/DelphiWebDriverDemo.Main.pas -------------------------------------------------------------------------------- /Demo/DelphiWebDriverDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Demo/DelphiWebDriverDemo.dpr -------------------------------------------------------------------------------- /Demo/DelphiWebDriverDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Demo/DelphiWebDriverDemo.dproj -------------------------------------------------------------------------------- /Demo/DelphiWebDriverDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Demo/DelphiWebDriverDemo.res -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/README.md -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.BiDi.Commands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.BiDi.Commands.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.BiDi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.BiDi.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Capabilities.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Capabilities.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Actions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Actions.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Alert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Alert.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Commands.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Commands.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Contexts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Contexts.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Cookies.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Cookies.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Document.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Document.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Element.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Element.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Elements.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Elements.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Navigation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Navigation.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Screenshot.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Screenshot.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Timeouts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Timeouts.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.Wait.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.Wait.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Classic.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Classic.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Events.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Events.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Server.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Server.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.Sessions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.Sessions.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Core.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Core.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Interfaces.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Types.pas -------------------------------------------------------------------------------- /Source/DelphiWebDriver.Websocket.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DA213/DelphiWebDriver/HEAD/Source/DelphiWebDriver.Websocket.pas --------------------------------------------------------------------------------