mdbook 0.5.2

Creates a book from markdown files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This GUI test checks the active page sidebar highlight.

go-to: |DOC_PATH| + "all-summary/index.html"

assert-text: ("mdbook-sidebar-scrollbox a.active", "Prefix 1")

go-to: |DOC_PATH| + "all-summary/part-1/chapter-1.html"

assert-text: ("mdbook-sidebar-scrollbox a.active", "3. P1 C1")

go-to: |DOC_PATH| + "all-summary/index.html?highlight=test"

assert-text: ("mdbook-sidebar-scrollbox a.active", "Prefix 1")

go-to: |DOC_PATH| + "all-summary/part-1/chapter-1.html?highlight=test"

assert-text: ("mdbook-sidebar-scrollbox a.active", "3. P1 C1")