Cannot have more than 3 rows when creating custom tables in extent report 5.0.4.
Is that a limitation or is this a bug or am I missing something?
public class CustomTableCreator {
public static List<String> Test;
public static Object[] Build_435;
public static Object[] Build_446;
public static Object[] Build_447;
public static Object[] Build_448;
}
CustomTableCreator.Test =Arrays.asList("Launch Time", "Login Time",
"Article Opening Time", "Train Launch Time", "Progress Launch Time",
"Profile Launch Time", "Help Center Launch Time");
CustomTableCreator.Build_435 = new Object[]{"1.34", "1.34", "1.34","1.34","1.34","1.34","1.34"};
CustomTableCreator.Build_446 = new Object[]{"1.34", "1.34", "1.34","1.34","1.34","1.34","1.34"};
CustomTableCreator.Build_447 = new Object[]{"1.34", "1.34", "1.34","1.34","1.34","1.34","1.34"};
CustomTableCreator.Build_448 = new Object[]{"1.34", "1.34", "1.34","1.34","1.34","1.34","1.34"};
Cannot have more than 3 rows when creating custom tables in extent report 5.0.4.
Is that a limitation or is this a bug or am I missing something?
Below is the code: