From a03a7c7ba03ca08d240d9ef9eae051e1e4208495 Mon Sep 17 00:00:00 2001 From: phpussente Date: Tue, 9 May 2023 11:20:40 -0300 Subject: [PATCH] new(basic.gblib): Command TEXT OF --- .../services/KeywordsExpressions.ts | 11 +++++- .../services/WebAutomationServices.ts | 37 +++++++++++++++---- 2 files changed, 39 insertions(+), 9 deletions(-) diff --git a/packages/basic.gblib/services/KeywordsExpressions.ts b/packages/basic.gblib/services/KeywordsExpressions.ts index f8f67fd52..6a91a0b08 100644 --- a/packages/basic.gblib/services/KeywordsExpressions.ts +++ b/packages/basic.gblib/services/KeywordsExpressions.ts @@ -802,11 +802,20 @@ export class KeywordsExpressions { keywords[i++] = [ /^\s*(click link text)(\s*)(.*)/gim, ($0, $1, $2, $3) => { - const params = this.getParams('page,' + $3, ['text', 'index']); + const params = this.getParams($3, ['text', 'index']); return `await wa.linkByText ({pid: pid, handle: page, ${params}})`; } ]; + keywords[i++] = [ + /^\s*((?:[a-z]+.?)(?:(?:\w+).)(?:\w+)*)\s*=\s*(text of)(\s*)(.*)/gim, + ($0, $1, $2, $3, $4) => { + const params = this.getParams($4, ['frameOrSelector', 'selector']); + return ` + ${$1} = await wa.getTextOf ({pid: pid, handle: page, ${params}})`; + } + ]; + keywords[i++] = [ /^\s*(click button)(\s*)(.*)/gim, ($0, $1, $2, $3) => { diff --git a/packages/basic.gblib/services/WebAutomationServices.ts b/packages/basic.gblib/services/WebAutomationServices.ts index be5f48937..5e3e16edd 100644 --- a/packages/basic.gblib/services/WebAutomationServices.ts +++ b/packages/basic.gblib/services/WebAutomationServices.ts @@ -72,7 +72,7 @@ export class WebAutomationServices { return 4294967296 * (2097151 & h2) + (h1 >>> 0); }; - + public async closeHandles({ pid }) { const { min, user } = await DialogKeywords.getProcessInfo(pid); @@ -98,13 +98,12 @@ export class WebAutomationServices { public async openPage({ pid, handle, sessionKind, sessionName, url, username, password }) { const { min, user } = await DialogKeywords.getProcessInfo(pid); - GBLogEx.info(min,`BASIC: Web Automation OPEN ${sessionName ? sessionName : ''} ${url}.`); + GBLogEx.info(min, `BASIC: Web Automation OPEN ${sessionName ? sessionName : ''} ${url}.`); // Try to find an existing handle. let session; - if (handle) - { + if (handle) { session = GBServer.globals.webSessions[handle]; } else if (sessionName) { @@ -116,7 +115,7 @@ export class WebAutomationServices { break; } } - } + } let page; if (session) { @@ -198,7 +197,7 @@ export class WebAutomationServices { public async getBySelector({ handle, selector, pid }) { const page = WebAutomationServices.getPageByHandle(handle); const { min, user } = await DialogKeywords.getProcessInfo(pid); - GBLogEx.info(min,`BASIC: Web Automation GET element: ${selector}.`); + GBLogEx.info(min, `BASIC: Web Automation GET element: ${selector}.`); await page.waitForSelector(selector); let elements = await page.$$(selector); if (elements && elements.length > 1) { @@ -316,7 +315,7 @@ export class WebAutomationServices { await els[index - 1].click(); await this.debugStepWeb(pid, page); } - + public async clickButton({ pid, handle, text, index }) { const page = WebAutomationServices.getPageByHandle(handle); GBLog.info(`BASIC: Web Automation CLICK BUTTON: ${text} ${index}.`); @@ -428,7 +427,7 @@ export class WebAutomationServices { folder = folder.replace(/\\/gi, '/'); // Determines full path at source and destination. - const path = DialogKeywords.getGBAIPath(min.botId,`gbdrive`); + const path = DialogKeywords.getGBAIPath(min.botId, `gbdrive`); const root = path; const dstPath = urlJoin(root, folder, filename); @@ -464,6 +463,28 @@ export class WebAutomationServices { return null; }) ); + return results.find(Boolean); } + + + public async getTextOf({ pid, handle, frameOrSelector, selector }) { + const page = WebAutomationServices.getPageByHandle(handle); + GBLog.info(`BASIC: Web Automation CLICK element: ${frameOrSelector}.`); + if (frameOrSelector) { + const result = await page.$eval( + frameOrSelector, + (ul) => { + let items = ""; + for (let i = 0; i < ul.children.length; i++) { + items = `${items}${ul.children[i].textContent}\n`; + } + return items; + } + ) + await this.debugStepWeb(pid, page); + + return result; + } + } }