File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed
tools/public_api_guard/cdk/testing Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,11 @@ export declare class ProtractorElement implements TestElement {
19
19
isFocused ( ) : Promise < boolean > ;
20
20
matchesSelector ( selector : string ) : Promise < boolean > ;
21
21
mouseAway ( ) : Promise < void > ;
22
- rightClick ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] |
23
- [ number , number , ModifierKeys ?] ) : Promise < void > ;
22
+ rightClick ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] | [
23
+ number ,
24
+ number ,
25
+ ModifierKeys ?
26
+ ] ) : Promise < void > ;
24
27
selectOptions ( ...optionIndexes : number [ ] ) : Promise < void > ;
25
28
sendKeys ( ...keys : ( string | TestKey ) [ ] ) : Promise < void > ;
26
29
sendKeys ( modifiers : ModifierKeys , ...keys : ( string | TestKey ) [ ] ) : Promise < void > ;
Original file line number Diff line number Diff line change @@ -21,8 +21,11 @@ export declare class UnitTestElement implements TestElement {
21
21
constructor ( element : Element , _stabilize : ( ) => Promise < void > ) ;
22
22
blur ( ) : Promise < void > ;
23
23
clear ( ) : Promise < void > ;
24
- click ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] |
25
- [ number , number , ModifierKeys ?] ) : Promise < void > ;
24
+ click ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] | [
25
+ number ,
26
+ number ,
27
+ ModifierKeys ?
28
+ ] ) : Promise < void > ;
26
29
dispatchEvent ( name : string , data ?: Record < string , EventData > ) : Promise < void > ;
27
30
focus ( ) : Promise < void > ;
28
31
getAttribute ( name : string ) : Promise < string | null > ;
@@ -34,8 +37,11 @@ export declare class UnitTestElement implements TestElement {
34
37
isFocused ( ) : Promise < boolean > ;
35
38
matchesSelector ( selector : string ) : Promise < boolean > ;
36
39
mouseAway ( ) : Promise < void > ;
37
- rightClick ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] |
38
- [ number , number , ModifierKeys ?] ) : Promise < void > ;
40
+ rightClick ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] | [
41
+ number ,
42
+ number ,
43
+ ModifierKeys ?
44
+ ] ) : Promise < void > ;
39
45
selectOptions ( ...optionIndexes : number [ ] ) : Promise < void > ;
40
46
sendKeys ( ...keys : ( string | TestKey ) [ ] ) : Promise < void > ;
41
47
sendKeys ( modifiers : ModifierKeys , ...keys : ( string | TestKey ) [ ] ) : Promise < void > ;
You can’t perform that action at this time.
0 commit comments