
co.verisoft.fw.cucumber.APIDictionary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Selenium4-Junit5 Show documentation
Show all versions of Selenium4-Junit5 Show documentation
VeriSoft framework for testing web and mobile applications. Selenium Module
package co.verisoft.fw.cucumber;
import java.util.Map;
public interface APIDictionary {
void initCertificates(String certificatePath, String password);
void setHeaders(Map headersTable);
void setBearerToken(String token);
void setJwtAsBearerToken();
void sendPostRequest(String url, Map params);
void sendGetRequest(String url);
void sendGetRequestWithParams(String url, Map params);
void sendPutRequest(String url, Map params);
void sendDeleteRequest(String url, Map params);
void generateJwt(String url);
void verifyStatusCode(int statusCode);
void verifyResponseFields(Map expectedFields);
void verifyResponseHeader(String headerName, String expectedValue);
void verifyErrorMessage(String expectedMessage);
void verifyFieldWithValue(String fieldName, String expectedValue);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy