docs: isOverShadowingAction

This commit is contained in:
karishmas6
2024-06-08 00:40:42 +05:30
parent 1f57124672
commit 5fd176a0de

View File

@@ -554,7 +554,14 @@ export class WorkflowGenerator {
this.socket.emit('workflow', this.workflowRecord);
}
/**
* Checks and returns possible pairs that would get over-shadowed by the pair
* from the current workflow.
* @param pair The pair that could be over-shadowing.
* @param page The page to be used for checking the visibility and accessibility of the selectors.
* @private
* @returns {Promise<PossibleOverShadow[]>}
*/
private IsOverShadowingAction = async (pair: WhereWhatPair, page: Page) => {
type possibleOverShadow = {
index: number;