File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ export class ProtractorElement implements TestElement {
220
220
[ { x : args [ 0 ] , y : args [ 1 ] } ] : [ ] ) as [ { x : number , y : number } ] ;
221
221
222
222
let actions = browser . actions ( )
223
- . mouseMove ( await this . element . getWebElement ( ) , ...offsetArgs ) ;
223
+ . mouseMove ( await this . element . getWebElement ( ) , ...offsetArgs ) ;
224
224
225
225
for ( const modifierKey of modifierKeys ) {
226
226
actions = actions . keyDown ( modifierKey ) ;
Original file line number Diff line number Diff line change @@ -79,15 +79,15 @@ export interface TestElement {
79
79
click ( modifiers ?: ModifierKeys ) : Promise < void > ;
80
80
81
81
/** Click the element at the element's center. */
82
- click ( location : 'center' , modifiers ?: ModifierKeys , ) : Promise < void > ;
82
+ click ( location : 'center' , modifiers ?: ModifierKeys ) : Promise < void > ;
83
83
84
84
/**
85
85
* Click the element at the specified coordinates relative to the top-left of the element.
86
86
* @param relativeX Coordinate within the element, along the X-axis at which to click.
87
87
* @param relativeY Coordinate within the element, along the Y-axis at which to click.
88
88
* @param modifiers Modifier keys held while clicking
89
89
*/
90
- click ( relativeX : number , relativeY : number , modifiers ?: ModifierKeys ) : Promise < void > ;
90
+ click ( relativeX : number , relativeY : number , modifiers ?: ModifierKeys ) : Promise < void > ;
91
91
92
92
/**
93
93
* Right clicks on the element at the specified coordinates relative to the top-left of it.
You can’t perform that action at this time.
0 commit comments