Developer Docs

What are Selenium and SpecFlow?

Selenium is an open source browser automation tool which is used for end-to-end integration testing of web applications. Selenium is supported in multiple programming languages, including (but not limited to) Java, Python, and C#. C#Bot supports running tests in Chrome, Firefox, and Edge.

Specflow

SpecFlow is a free open source .Net tool for Behaviour Driven Development (BDD), if you are familiar with Java, SpecFlow is .Net equivalent of Cucumber. Rather than writing tests with code, they are instead written in Gherkin Syntax (Given-When-Then).

C# itself does not understand Gherkin ‘.feature’ files, therefore Specflow generates these into ‘.feature.cs’ class files at compile time. This allows xUnit to understand the defined Features so it can run the tests. It is important to note; developers do not need to touch the .feature.cs files, they can be ignored.

Selenium

Features

Selenium features are how the actions the test should take are set. These actions are split out into three primary categories:

Multiple steps in a feature of the same type can also be chained together using an And step:

@BotWritten
Feature: Example Selenium Feature

    @example
    Scenario: Example Scenario
        Given I login to the site with the admin account
            And I am on the homepage
            And I navigate to the ExampleEntity backend page
        When I create an entity
        Then I expect that an entity has been created

Scenarios and features can be grouped together with annotations such as the ‘@example’ tag on the scenario or feature level. These can be used group and filter the tests being run.

Step Definitions

The steps in the features define what actions the tests must perform when they are run. The step definitions define how these steps will be executed. Every step used in a selenium test must have a corresponding step definition, which defines the methods that will be run when the test is executed. The syntax for step definitions is standard C# syntax, however step definitions must also be annotated as follows:

[When("I create an entity")]
public void WhenICreateAnEntity() {
    //Step Definition implementation goes here
}

The string in the annotation and the type of the step definition (Given, When, Then) must match for a step definition to be called when the scenario is being executed. Also remember that ‘And’ steps will use the relevant type, and do not need to be declared as ‘And’ step definitions.

Step definitions can also be created to include variables, which allows for customisation of scenarios without having to create additional step definition functions. The syntax for this is as follows:

[When("I create (.*) instances of the (.*) entity")]
public void WhenICreateEntities(int entityCount, string entityName) {
    //Step Definition implementation goes here
}

This step definition would be called from a scenario like this. The variables in the step definition would be filled with the values entered into the step in the scenario:

When I create 5 instances of the ExampleEntity entity

Was this article helpful?

Thanks for your feedback!

If you would like to tell us more, please click on the link below to send us a message with more details.

Tool:

Generate

Iterate

Bot:

C#Bot

SpringBot

On this page

New to Codebots?

We know our software can be complicated, so we are always happy to have a chat if you have any questions.