Is there a way to use variables in .feature files that would be replaced with specific values ​​when the test was run?

for example

 Scenario Outline: TEST Given I am on the homepage When I visit @website Then I should see @title 

As a result, when running @website and @title will be replaced with the specified values.

The mechanism of Scenario Outlines (placeholders) is not exactly what we would like.

    0