嗨,我试图做一个 NavigationModule 来访问我在 geb.page 中的内容,但是当我想从此导航“模块”实例时,intellij 无法解决
class NavigationModule extends Module{
static content = {
homeLink { $("a", title:"Home") }
contactLink { $("a", title:"Contact Us") }
}
}
class HomePage extends Page{
static url = "http://www.websitetest.com"
static at={
assert $("h1").text() == "Test website speed and performance"
}
static content = {
navBar {module NavigationModule}
//loginLink { $("a", text: "login")[0]}
}
}
而且我也无法从我的脚本中访问
void test() {
Browser.drive() {
to HomePage
navBar.
}
}
有人知道会发生什么吗?我花了很多时间在谷歌搜索,但我没有找到任何东西
提前致谢