在visual studio cod中,如何从功能导航到步骤定义。我们是否需要添加任何其他插件或任何配置。我已经下载了Cucumber(Gherkin)Full Support插件,但仍无法从.feature导航到步骤定义。
Cucumber (Gherkin) Full Support
插件的文档有解释。
您需要在设置中添加以下内容:
{
"cucumberautocomplete.steps": [
"test/features/step_definitions/*.js",
"node_modules/qa-lib/src/step_definitions/*.js"
],
"cucumberautocomplete.syncfeatures": "test/features/*feature",
"cucumberautocomplete.strictGherkinCompletion": true
}
cucumberautocomplete.steps
=>提供步骤定义的路径。 cucumberautocomplete.syncfeatures
=>提供要素文件的路径
在此之后(可能在重启之后),cmd + click
(在mac上)将进入步骤定义。
谢谢,Naveen