@@ -588,11 +588,11 @@ declare global {
588
588
* @see https://github.com/testing-library/cypress-testing-library#usage
589
589
* @see https://github.com/testing-library/dom-testing-library#table-of-contents
590
590
*/
591
- queryByValue < E extends Node = HTMLElement > (
591
+ queryByDisplayValue < E extends Node = HTMLElement > (
592
592
id : Matcher ,
593
593
options ?: MatcherOptions ,
594
594
) : Chainable < E | null >
595
- queryByValue < K extends keyof HTMLElementTagNameMap > (
595
+ queryByDisplayValue < K extends keyof HTMLElementTagNameMap > (
596
596
id : Matcher ,
597
597
options ?: MatcherOptions ,
598
598
) : Chainable < HTMLElementTagNameMap [ K ] | null >
@@ -608,11 +608,11 @@ declare global {
608
608
* @see https://github.com/testing-library/cypress-testing-library#usage
609
609
* @see https://github.com/testing-library/dom-testing-library#table-of-contents
610
610
*/
611
- queryAllByValue < E extends Node = HTMLElement > (
611
+ queryAllByDisplayValue < E extends Node = HTMLElement > (
612
612
id : Matcher ,
613
613
options ?: MatcherOptions ,
614
614
) : Chainable < ( E | null ) [ ] >
615
- queryAllByValue < K extends keyof HTMLElementTagNameMap > (
615
+ queryAllByDisplayValue < K extends keyof HTMLElementTagNameMap > (
616
616
id : Matcher ,
617
617
options ?: MatcherOptions ,
618
618
) : Chainable < ( HTMLElementTagNameMap [ K ] | null ) [ ] >
@@ -628,11 +628,11 @@ declare global {
628
628
* @see https://github.com/testing-library/cypress-testing-library#usage
629
629
* @see https://github.com/testing-library/dom-testing-library#table-of-contents
630
630
*/
631
- getByValue < E extends Node = HTMLElement > (
631
+ getByDisplayValue < E extends Node = HTMLElement > (
632
632
id : Matcher ,
633
633
options ?: MatcherOptions ,
634
634
) : Chainable < E >
635
- getByValue < K extends keyof HTMLElementTagNameMap > (
635
+ getByDisplayValue < K extends keyof HTMLElementTagNameMap > (
636
636
id : Matcher ,
637
637
options ?: MatcherOptions ,
638
638
) : Chainable < HTMLElementTagNameMap [ K ] >
@@ -648,11 +648,11 @@ declare global {
648
648
* @see https://github.com/testing-library/cypress-testing-library#usage
649
649
* @see https://github.com/testing-library/dom-testing-library#table-of-contents
650
650
*/
651
- getAllByValue < E extends Node = HTMLElement > (
651
+ getAllByDisplayValue < E extends Node = HTMLElement > (
652
652
id : Matcher ,
653
653
options ?: MatcherOptions ,
654
654
) : Chainable < E [ ] >
655
- getAllByValue < K extends keyof HTMLElementTagNameMap > (
655
+ getAllByDisplayValue < K extends keyof HTMLElementTagNameMap > (
656
656
id : Matcher ,
657
657
options ?: MatcherOptions ,
658
658
) : Chainable < HTMLElementTagNameMap [ K ] [ ] >
0 commit comments