rust/tests/rustdoc-gui/search-result-keyword.goml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
604 B
Plaintext
Raw Normal View History

2022-01-21 13:41:47 -06:00
// Checks that the "keyword" results have the expected text alongside them.
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
write: (".search-input", "CookieMonster")
2022-07-16 06:53:43 -05:00
// 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.
//
2021-05-24 07:29:57 -05:00
// Checking that the CSS is displaying " (keyword)" in italic.
2021-06-19 05:56:55 -05:00
assert-text: (".result-name span.keyword > i", "(keyword)")
assert-text: (".result-name span.keyword", "CookieMonster (keyword)")