Add support for the Get URL WebDriver command.

This commit is contained in:
James Graham 2015-06-15 13:24:49 +01:00
parent 2f4bdc6ad6
commit 9eade19897
3 changed files with 21 additions and 0 deletions

View file

@ -336,6 +336,7 @@ impl MozBrowserEvent {
#[derive(Deserialize, Serialize)]
pub enum WebDriverCommandMsg {
LoadUrl(PipelineId, LoadData, IpcSender<LoadStatus>),
GetUrl(PipelineId, IpcSender<Url>),
ScriptCommand(PipelineId, WebDriverScriptCommand),
TakeScreenshot(PipelineId, IpcSender<Option<Image>>)
}