Skip to content

Commit

Permalink
Rollup merge of #128267 - GuillaumeGomez:gui-test-title, r=notriddle
Browse files Browse the repository at this point in the history
Add rustdoc GUI test to check title with and without search

Follow-up of #128210.

r? `@notriddle`
  • Loading branch information
tgross35 committed Jul 27, 2024
2 parents 5f3a603 + 015f5d6 commit 8dd94b8
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 8dd94b8

Please sign in to comment.