mx-cloud 0.0.24 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,34 +1,4 @@
1
- import { ElementHandle, Page } from "playwright-core";
2
- export declare const generateSelectors: (page: Page, elementHandle: ElementHandle) => Promise<{
3
- id: any;
4
- generalSelector: any;
5
- attrSelector: any;
6
- testIdSelector: any;
7
- text: string;
8
- href: string;
9
- hrefSelector: any;
10
- accessibilitySelector: any;
11
- formSelector: any;
12
- iframeSelector: {
13
- full: string;
14
- isIframe: boolean;
15
- };
16
- shadowSelector: {
17
- full: string;
18
- mode: any;
19
- };
20
- }>;
21
- interface SelectorResult {
22
- generalSelector: string;
23
- }
24
- /**
25
- * Returns the best non-unique css {@link Selectors} for the element on the page.
26
- * @param page The page instance.
27
- * @param coordinates Coordinates of an element.
28
- * @category WorkflowManagement-Selectors
29
- * @returns {Promise<Selectors|null|undefined>}
30
- */
31
- export declare const generateNonUniqueSelectors: (page: Page, elementHandle: ElementHandle, listSelector?: string) => Promise<SelectorResult>;
1
+ import { Page } from "playwright-core";
32
2
  /**
33
3
  * Generate new list selector from fallback element (based on your reference implementation)
34
4
  * @param page - Playwright page object
@@ -56,4 +26,3 @@ export declare const generateFieldSelectorFromFallback: (page: Page, fallbackSel
56
26
  formSelector: string | null;
57
27
  relSelector: string | null;
58
28
  } | null>;
59
- export {};