I\'m trying to print the test data used in webdriver test inside a print line in Java
I need to print multiple variables used in a class inside a system.out.pr
system.out.pr
Suppose we have variable date , month and year then we can write it in the java like this.
int date=15,month=4,year=2016; System.out.println(date+ "/"+month+"/"+year);
output of this will be like below:
15/4/2016