Skip to content

Commit

Permalink
Add rustdoc GUI test to check title with and without search
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jul 27, 2024
1 parent ad3c5a3 commit 015f5d6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/rustdoc-gui/search-title.goml
Original file line number Diff line number Diff line change
@@ -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|}

0 comments on commit 015f5d6

Please sign in to comment.