All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.epam.jdi.cucumber.stepdefs.ru.FrameworkStepdefs Maven / Gradle / Ivy

There is a newer version: 1.1.34
Show newest version
package com.epam.jdi.cucumber.stepdefs.ru;

import com.epam.jdi.uitests.web.selenium.elements.common.TextField;
import cucumber.api.java.en.Given;

import static com.epam.jdi.cucumber.Utils.getElementByName;

public class FrameworkStepdefs {

    @Given("^я заполняю \"([^\"]*)\" значением \"([^\"]*)\"$")
    public void iMFillBy(String fieldName, String data) {
        TextField textField = getElementByName(fieldName);
        textField.setValue(data);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy