File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
packages/cypress-commands/src Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -68,18 +68,21 @@ declare global {
68
68
69
69
/**
70
70
* Click on an `ui5-option` of the `ui5-select` component by text.
71
+ *
72
+ * __Note:__ The select popover must be visible, otherwise it can lead to unwanted side effects.
73
+ *
71
74
* @param text text of the ui5-option that should be clicked
72
75
* @example cy.get('[ui5-select]').clickUi5SelectOptionByText('Option2');
73
76
*
74
- * __Note:__ The select popover must be visible, otherwise the `change` event is not fired.
75
77
*/
76
78
clickUi5SelectOptionByText ( text : string , options ?: Partial < ClickOptions > ) : Chainable < Element > ;
77
79
78
80
/**
79
81
* Click on chained `ui5-option`.
80
- * @example cy.get('[ui5-option]').clickUi5SelectOption();
81
82
*
82
- * __Note:__ The select popover must be visible, otherwise the `change` event is not fired.
83
+ * __Note:__ The select popover must be visible, otherwise it can lead to unwanted side effects.
84
+ *
85
+ * @example cy.get('[ui5-option]').clickUi5SelectOption();
83
86
*/
84
87
clickUi5SelectOption ( options ?: Partial < ClickOptions > ) : Chainable < Element > ;
85
88
}
You can’t perform that action at this time.
0 commit comments