fix(basic.gblib): Return the last information with getTextOf
This commit is contained in:
parent
a03a7c7ba0
commit
ececb0d2ea
1 changed files with 1 additions and 1 deletions
|
@ -477,7 +477,7 @@ export class WebAutomationServices {
|
||||||
(ul) => {
|
(ul) => {
|
||||||
let items = "";
|
let items = "";
|
||||||
for (let i = 0; i < ul.children.length; i++) {
|
for (let i = 0; i < ul.children.length; i++) {
|
||||||
items = `${items}${ul.children[i].textContent}\n`;
|
items = `${ul.children[i].textContent}\n`;
|
||||||
}
|
}
|
||||||
return items;
|
return items;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue