所以我有幾個測試,我已經重複使用步驟內的步驟。導航到Specflow步驟從步驟定義
但是我現在在維護方面有一個噩夢,因爲我無法輕鬆地在步驟之間導航。
下面是一個例子:
[Given(@"I have an order")]
public void GivenIHaveAnOrder()
{
Given("an open store");
Given("I am an existing customer");
Given("I am on homepage");
When("I search for a component");
When("I add the component to my basket");
}
如何瀏覽到這些內部步驟之一?
如果我想導航到「當(」我搜索組件「);」一步我不能。
如果我在功能文件,我可以簡單地右鍵單擊該步驟和「去定義」,但我不能這樣做。有沒有人有辦法解決嗎?
我找到的唯一解決方案是使用visual studio find搜索步驟文本。 –