docs: fxn docs

This commit is contained in:
karishmas6
2024-09-23 17:57:50 +05:30
parent a4a98c67d8
commit 960c254b89

View File

@@ -303,6 +303,10 @@ export class WorkflowGenerator {
await this.addPairToWorkflowAndNotifyClient(pair, page);
};
/**
* Returns tag name and text content for the specified selector
* used in customAction for decision modal
*/
private async getLastUsedSelectorInfo(page: Page, selector: string) {
const elementHandle = await page.$(selector);
if (elementHandle) {