I'm having an error when splitting data extract from excel. when I'm on a.java
it works. But now I'm converting my scripts to Java Xtend and now I am having the following error.
Here is the code
var dashboards = M3ASmokeTest.ReadExcelFile();
var countdsh = 0;
var countdom = 0;
var countrep = 0;
Thread.sleep(20000);
for(String groupedDomain: dashboards)
{
var domain = dashboards.get(countdom).split(";")[0];
var dboards = dashboards.get(countdsh).split(";")[1];
var reports = dashboards.get(countdsh).split(";")[2];'
}