モジュールでパラメータを使用できるように、パラメータを「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:
…
…