blob: ecbe809b9a6aa5c207fd1f604ea87594acba9e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package signatures
import org.jsoup.Jsoup
import org.jsoup.nodes.Element
import org.jsoup.select.Elements
import utils.Tag
import utils.TestOutputWriter
public fun TestOutputWriter.renderedContent(path: String = "root/example.html"): Element =
contents.getValue(path).let { Jsoup.parse(it) }.select("#content")
.single()
public fun Element.signature(): Elements = select("div.symbol.monospace")
public fun Element.tab(tabName: String): Elements = select("div[data-togglable=\"$tabName\"]")
public fun Element.firstSignature(): Element = signature().first() ?: throw NoSuchElementException("No signature found")
public fun Element.lastSignature(): Element = signature().last() ?: throw NoSuchElementException("No signature found")
public class Parameters(vararg matchers: Any) : Tag("span", *matchers, expectedClasses = listOf("parameters"))
public class Parameter(vararg matchers: Any) : Tag("span", *matchers, expectedClasses = listOf("parameter"))
|