abendt
07/01/2021, 6:04 PMsam
07/03/2021, 1:17 PMabendt
07/04/2021, 11:17 AMclass ExampleStringSpec : FluentStringSpec({
"Title should be correct" {
goTo(DEFAULT_URL)
jq("#name").fill().with("FluentLenium")
el("#name").value() shouldBe "FluentLenium"
window().title() shouldContain "Fluent"
}
afterTest {
goTo(DEFAULT_URL) // this will fail as the browser is already closed
}
})
Do you see any more options here to make that usecase work?