fix(basic.gblib): Return the last information with getTextOf

This commit is contained in:
phpussente 2023-05-15 15:18:19 -03:00
parent a03a7c7ba0
commit ececb0d2ea

View file

@ -477,7 +477,7 @@ export class WebAutomationServices {
(ul) => {
let items = "";
for (let i = 0; i < ul.children.length; i++) {
items = `${items}${ul.children[i].textContent}\n`;
items = `${ul.children[i].textContent}\n`;
}
return items;
}