An important features provided by TestNG is the DataProvider feature. It helps you to write data-driven tests, which essentially means that same test method can be run multiple times with different data-sets. Please note that DataProvider is the second way of passing parameters to test methods (first way we already discussed in @Parameters example). It helps in providing complex parameters to the test methods as it is not possible to do this from XML.
To use the DataProvider feature in your tests you have to declare a method annotated by
@DataProvider
and then use the said method in the test method using the ‘dataProvider‘ attribute in the Test annotation.
The below test class contains a test method which takes two argument as input and opens firefox driver and provide guest/guest as input to the textbox field when executed. A DataProvider method is also available in the same class by using the
@DataProvider
annotation of TestNG. The name of the said DataProvider method is mentioned using the name attribute of the @DataProvider
annotation. The DataProvider returns a double Object class array with two sets of data i.e. “guest” and “guest ”.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package dp; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
import org.testng.annotations.BeforeTest; | |
import org.testng.annotations.DataProvider; | |
import org.testng.annotations.Test; | |
public class DP { | |
WebDriver myTestDriver; | |
@BeforeTest | |
public void Init(){ | |
//System.setProperty("webdriver.ie.driver","D:\\jars-core\\IEDriverServer.exe"); | |
myTestDriver=new FirefoxDriver(); | |
} | |
@Test(dataProvider="getData") | |
public void setData(String username, String password) throws InterruptedException | |
{ | |
myTestDriver.get("https://timetracker.anuko.com/login.php"); | |
myTestDriver.manage().window().maximize(); | |
Thread.sleep(5000); | |
// user name and password are reading from dataprovider getData method | |
myTestDriver.findElement(By.xpath("//*[@id='login']")).sendKeys(username); | |
myTestDriver.findElement(By.xpath("//*[@id='password']")).sendKeys(password); | |
myTestDriver.findElement(By.id("btn_login")).click(); | |
} | |
// dp | |
@DataProvider | |
public Object[][] getData() | |
{ | |
//Rows - Number of times your test has to be repeated. | |
//Columns - Number of parameters in test data. | |
Object[][] data = new Object[1][2]; | |
// 1st row | |
data[0][0] ="guest"; | |
data[0][1] = "guest"; | |
return data; | |
} | |
} | |
Right click and run the script as Testng suite
Output :
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.