summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-gui/search-result-keyword.goml
blob: 8c3577d9fd3d0de09880cf0e88ec4c2e8303982d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Checks that the "keyword" results have the expected text alongside them.
goto: "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-name span.keyword > i", "(keyword)")
assert-text: (".result-name span.keyword", "CookieMonster (keyword)")