我是否可以将参数传递给“at()”,以便在模块中使用参数?这是我的场景:
包含有关产品的一些常见细节的页面的模块(ProductModule,它有一个我想参数化的内容标题)。我有一个使用该模块的页面,但我希望“at()”在测试期间将产品标题传递给它。这可能吗?
我的用途是(在伪代码中)
...
...
when:
go ProductPage
then:
at ProductPage(title:”Product title goes here”) // this is the parameter I want to pass down to the “at” since the check is a content segment in the Module
and:
…
…