Cucumber style BDD scenarios in UiPath Studio

Those who worked with Java/Cucumber, C#/Specflow, JavaScript/Cypress like BDD test automation domains are familiar with .feature files where we write something like this
File name: Login.feature
Feature: Login feature

Scenario: Invalid credentials should show authentication error
Given I navigate to application
When I login with invalid credentials
Then I should see authentication error
And we write step definitions for each of the steps above in Java/C#/JavaScript depending on the language framework.
Does UiPath also supports creating of .feature files
My understanding is UiPath supports BDD in a different way like


I want to see the scenarios in a file. That gives a good readability and also serves as documentation.
Best Regards
Ganesh

Hi @ganesh.panchagnula

As per my knowledge , UiPath does not natively support creating or using .feature files like in Java/Cucumber or C#/SpecFlow. However, you can integrate UiPath with SpecFlow (C#) or Cucumber (Java) by using external libraries or through custom activities. This allows you to automate BDD-style tests with step definitions while utilizing UiPath workflows.

If you found helpful, feel free to tick as a solution.
Happy Automation

Hi
Thank you for your response. Do you have an example of calling a UiPath workflow from C# code? please share if you have one.

Thank you