Skip to content

Cucumber-java-webdriver-manager template with Cucumber-java8, Cucumber Spring, Selenide library and webdriver manager (Selenium WebDriver)

Notifications You must be signed in to change notification settings

bazylMN/cucumber-java-webdriver-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cucumber-java-webdriver-manager template

with Cucumber-java, Cucumber Spring, custom annotation @PageObject, lambda expression ready, Selenide library and webdriver manager (Selenium WebDriver) for:

  • chrome
  • firefox
  • chrome headless
  • iexplorer

Prerequisites

  • gradle
  • Cucumber for Java plugin for IntelliJ
  • Gherkin for IntelliJ
  • chromedriver.exe (put it into project root)- chrome is set as default browser
  • geckodriver.exe (put it into project root)- is needed for newer FF versions
  • IEDriverServer.exe (put it into project root)

Initial

  • clone repository
  • open build.gradle file in IDE (IntelliJ)
  • import dependencies with gradle

Customise Cucumber tests

  • add your .feature files with scenarios
  • create custom steps class / steps classes with @Autowired annotations for page objects class / classes
  • generate steps- in .feature file press 'alt+enter' shortcut and choose 'Create step definition' option, choose created steps class / steps classes to paste steps
  • create custom page objects classes with methods and with @Component and @Autowired annotations for webdriver manager
  • create assertions classes with methods and @Component annotation
  • delete example .feature files, steps classes, page objects classes and assertion classes

Custom annotation @PageObject

Add @PageObject in page object classes instead of Spring @Component annotation

Lambda expression ready

Steps classes implements En interface and are prepared to use code by 'lambda-way'. Example of lambda expression is used in SignUpFormPageObjects class:

    private void sendKeysForInputWithAttrubuteName(String partValueName, String keyToSend){
        webDriverManager.getDriver().findElements(By.cssSelector(USER_INPUT))
                .stream()
                .filter(elem->elem.getAttribute(USER_INPUT_ATTRIBUTE_NAME).contains(partValueName))
                .findFirst()
                .get()
                .sendKeys(keyToSend);
    }

How to use Selenide

If there is a need to use Selenide as a driver provider to find elements or take an action, simply add one line in a page object method:

WebDriverRunner.setWebDriver(your initialized driver);

A method in template, which is using Selenide to find element might look like below (there is used 'setWebDriver(driver)' method):

    @Autowired
    private WebDriverManager webDriverManager;

    private static final String JAM_MENU = ".Header-nav-item[href*=jam]";

    public void clickJamMenu(){
        WebDriverRunner.setWebDriver(webDriverManager.getDriver());
        $(JAM_MENU).click();
    }

Or paste the method 'setWebDriver(driver)' in the WebDriverManager class like below and use Selenide as a driver provider across the project, mixing it with Selenium WebDriver (you can use both in methods):

            (...)
            default:
                System.getProperty("browser", "chrome");
                System.setProperty("webdriver.chrome.driver", "chromedriver.exe");
                webDriver = new ChromeDriver();
                break;
        }
        WebDriverRunner.setWebDriver(webDriver);
        return webDriver;
    }

The method 'getWebDriver()' in WebDriverManager class is already configured to use Selenide library. You can choose which way Selenide is going to be used in project (only partially in particular method or globally with WebDriverManager class)

How to run tests:

With gradle command:

To run Cucumber tests with custom runTests task and with default browser, type:
 runTests
To run Cucumber tests with custom runTests task and with chosen browser, type:
-Dbrowser=chrome runTests
-Dbrowser=firefox runTests
-Dbrowser=chromeHeadless runTests
-Dbrowser=iexplorer runTests
To run Cucumber tests with default browser, type:
clean test
To run Cucumber tests with chosen browser, type:
clean -Dbrowser=chrome test
clean -Dbrowser=firefox test
clean -Dbrowser=chromeHeadless test
clean -Dbrowser=iexplorer test

With IDE (JUnit):

run CucumberRunner class
or run .feature file / directory with .feature files / scenario in .feature file

Reports and screenshots

Reports are placed in 'target' directory, including screenshots of failed scenarios. To run report in browser, open 'target\html\index.html' file and choose browser.

Gradle custom tasks

  • runTests
  • deleteCucumberReports

About

Cucumber-java-webdriver-manager template with Cucumber-java8, Cucumber Spring, Selenide library and webdriver manager (Selenium WebDriver)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published