@@ -33,6 +33,21 @@ interface IQueryMethods {
33
33
queryAllByTitle ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
34
34
getByTitle ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element >
35
35
getAllByTitle ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
36
+
37
+ queryByRole ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element | null >
38
+ queryAllByRole ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
39
+ getByRole ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element >
40
+ getAllByRole ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
41
+
42
+ queryBySelectText ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element | null >
43
+ queryAllBySelectText ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
44
+ getBySelectText ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element >
45
+ getAllBySelectText ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
46
+
47
+ queryByValue ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element | null >
48
+ queryAllByValue ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
49
+ getByValue ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element >
50
+ getAllByValue ( el : Element , m : Matcher , opts ?: MatcherOptions ) : Promise < Element [ ] >
36
51
}
37
52
38
53
type IScopedQueryMethods = {
0 commit comments