feat: generate data for highlithing element on client side

This commit is contained in:
karishmas6
2024-06-08 00:27:11 +05:30
parent 0aaf697f69
commit b6c4de7184

View File

@@ -474,4 +474,13 @@ export class WorkflowGenerator {
}
public generateDataForHighlighter = async (page: Page, coordinates: Coordinates) => {
const rect = await getRect(page, coordinates);
const displaySelector = await this.generateSelector(page, coordinates, ActionType.Click);
if (rect) {
this.socket.emit('highlighter', { rect, selector: displaySelector });
}
}
}