Is there any pytest bdd plugin which could solve this problem, please.
I am using Pytest BDD extension in VS code, I am not able to navigate to step definition from feature file, if the step has a parameters in it.
Plugin I tried: plugin link
For example in the below example user A is a parameter
Feature file.
Given the user logs in as user A
step definition:
@given(parsers.parse("the user logs in as {user_name}"))
def login(user_name):