File tree 2 files changed +3
-3
lines changed
playwright-e2e/dss/component
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export default class Input extends WidgetBase {
85
85
await this . toLocator ( ) . blur ( ) ;
86
86
}
87
87
88
- public get currentValue ( ) : Promise < string > {
88
+ public async currentValue ( ) : Promise < string > {
89
89
return this . toLocator ( ) . inputValue ( ) ;
90
90
}
91
91
@@ -97,7 +97,7 @@ export default class Input extends WidgetBase {
97
97
await this . toLocator ( ) . focus ( ) ;
98
98
}
99
99
100
- public get maxLength ( ) : Promise < string | null > {
100
+ public async maxLength ( ) : Promise < string | null > {
101
101
return this . toLocator ( ) . getAttribute ( 'maxlength' ) ;
102
102
}
103
103
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export default class TextArea extends WidgetBase {
26
26
pressTab && await this . toLocator ( ) . press ( 'Tab' ) ;
27
27
}
28
28
29
- get currentValue ( ) : Promise < string > {
29
+ async currentValue ( ) : Promise < string > {
30
30
return this . toLocator ( ) . inputValue ( ) ;
31
31
}
32
32
You can’t perform that action at this time.
0 commit comments