我正在尝试调试代码,并且当控件转到数组赋值行时,Katalon返回的错误是io.cucumber.core_3.0.2。找不到源。 请参考下面突出显示的数组分配值。 您能否建议进一步进行操作?
步骤定义
def user_click_on_bulk_assignment_link() {
if(runIndicator4!=‘N’) {
int[] valstore
valstore = new int[4]
valstore[0] = 0
valstore[1] = 0
valstore[2] = 0
valstore[3] = 0
int intal = 0
for(int j=0; j < rows_count2; j++) {
List cols2 = rows_table2.get(j).findElements(By.tagName(‘td’))
int cols_count2 = cols2.size()
for (int colum2 = 0; colum2 < cols_count2; colum2++) {
if(colum2==5) {
**valstore[intal] = cols2.get(colum2).getText()**
String celltext2 = cols2.get(colum2).getText()
intal = intal + 1
}
}
}