diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-07-27 12:12:16 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-07-27 12:12:16 +0200 |
| commit | 015f5d6f76ed631885a661946d9751221ab9c6aa (patch) | |
| tree | 67b18d88911e83b4d08ae8895a5776cfc36b87f9 | |
| parent | ad3c5a330173a4a6446c1ed90c72a3f5f9106888 (diff) | |
| download | rust-015f5d6f76ed631885a661946d9751221ab9c6aa.tar.gz rust-015f5d6f76ed631885a661946d9751221ab9c6aa.zip | |
Add rustdoc GUI test to check title with and without search
| -rw-r--r-- | tests/rustdoc-gui/search-title.goml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/rustdoc-gui/search-title.goml b/tests/rustdoc-gui/search-title.goml new file mode 100644 index 00000000000..95bc36af449 --- /dev/null +++ b/tests/rustdoc-gui/search-title.goml @@ -0,0 +1,24 @@ +// Checks that the search changes the title +include: "utils.goml" +go-to: "file://" + |DOC_PATH| + "/test_docs/index.html" + +store-value: (title, "test_docs - Rust") +assert-document-property: {"title": |title|} + +write-into: (".search-input", "test") +// To be SURE that the search will be run. +press-key: 'Enter' +wait-for: "#crate-search" + +assert-document-property: {"title": '"test" Search - Rust'} + +set-property: (".search-input", {"value": "another one"}) +// To be SURE that the search will be run. +press-key: 'Enter' +wait-for: "#crate-search" + +assert-document-property: {"title": '"another one" Search - Rust'} + +press-key: "Escape" + +assert-document-property: {"title": |title|} |
