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

This commit is contained in:
phpussente 2023-05-15 15:18:19 -03:00
parent 3ece133f72
commit 5d782b16d5

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;
}