I want to Pass the parameter "Country" with different countries names. Is it possible to keep all the country names in excel and call those from the datafile.
RestAssured.given()
.pathParam("country", "Finland")
.when()
.get("http://restcountries.eu/rest/v1/name/{country}")
.then()
.body("capital", containsString("Helsinki"));