mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Add script execution support via WebDriver
This commit is contained in:
parent
1b08211a5e
commit
c2fc6e311a
19 changed files with 223 additions and 18 deletions
15
ports/cef/Cargo.lock
generated
15
ports/cef/Cargo.lock
generated
|
@ -124,7 +124,7 @@ dependencies = [
|
|||
"time 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"webdriver_server 0.0.1",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -651,6 +651,7 @@ dependencies = [
|
|||
"style 0.0.1",
|
||||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -834,6 +835,7 @@ dependencies = [
|
|||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"uuid 0.1.11 (git+https://github.com/rust-lang/uuid)",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -847,6 +849,7 @@ dependencies = [
|
|||
"net_traits 0.0.1",
|
||||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1022,7 +1025,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "webdriver"
|
||||
version = "0.0.1"
|
||||
source = "git+https://github.com/jgraham/webdriver-rust.git#4f543416a269b9d0d7ee5332db489768c2a769dd"
|
||||
source = "git+https://github.com/jgraham/webdriver-rust.git#fa625e3cf8fdb39b503c1cc902506df3a1d1c9de"
|
||||
dependencies = [
|
||||
"hyper 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"log 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -1041,6 +1044,14 @@ dependencies = [
|
|||
"util 0.0.1",
|
||||
"uuid 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"webdriver 0.0.1 (git+https://github.com/jgraham/webdriver-rust.git)",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "webdriver_traits"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"rustc-serialize 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
15
ports/gonk/Cargo.lock
generated
15
ports/gonk/Cargo.lock
generated
|
@ -119,7 +119,7 @@ dependencies = [
|
|||
"time 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"webdriver_server 0.0.1",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -634,6 +634,7 @@ dependencies = [
|
|||
"style 0.0.1",
|
||||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -826,6 +827,7 @@ dependencies = [
|
|||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"uuid 0.1.11 (git+https://github.com/rust-lang/uuid)",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -839,6 +841,7 @@ dependencies = [
|
|||
"net_traits 0.0.1",
|
||||
"url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"util 0.0.1",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1013,7 +1016,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "webdriver"
|
||||
version = "0.0.1"
|
||||
source = "git+https://github.com/jgraham/webdriver-rust.git#4f543416a269b9d0d7ee5332db489768c2a769dd"
|
||||
source = "git+https://github.com/jgraham/webdriver-rust.git#fa625e3cf8fdb39b503c1cc902506df3a1d1c9de"
|
||||
dependencies = [
|
||||
"hyper 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"log 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -1032,6 +1035,14 @@ dependencies = [
|
|||
"util 0.0.1",
|
||||
"uuid 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"webdriver 0.0.1 (git+https://github.com/jgraham/webdriver-rust.git)",
|
||||
"webdriver_traits 0.0.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "webdriver_traits"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"rustc-serialize 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue