rust/tests/rustdoc-gui/search-result-keyword.goml
2023-06-02 23:56:10 +02:00

14 lines
592 B
Plaintext

// Checks that the "keyword" results have the expected text alongside them.
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
write: (".search-input", "CookieMonster")
// To be SURE that the search will be run.
press-key: 'Enter'
// Waiting for the search results to appear...
wait-for: "#search-tabs"
// Note: The two next assert commands could be merged as one but readability would be
// less good.
//
// Checking that the CSS is displaying " (keyword)" in italic.
assert-text: (".result-keyword .type-kind", "keyword")
assert-text: (".result-keyword .result-name", "CookieMonster")