fix(basic.gblib): Get all text from webservice inside SEE TEXT keyword.

This commit is contained in:
Rodrigo Rodriguez 2021-11-25 14:17:35 -03:00
parent 8d61ae5536
commit 932e131a50

View file

@ -128,10 +128,10 @@ export class SystemKeywords {
const region = result.regions[i];
for (let j = 0; j < region.lines.length; j++) {
const line = region.lines.words[j];
const line = region.lines[j];
for (let k = 0; k < line.words.length; k++) {
final += line.words[k].text;
final += `${line.words[k].text} `;
}
}
}