@@ -142,6 +142,7 @@ async def select_option(
142
142
label : Union [str , List [str ]] = None ,
143
143
element : Union ["ElementHandle" , List ["ElementHandle" ]] = None ,
144
144
timeout : float = None ,
145
+ force : bool = None ,
145
146
noWaitAfter : bool = None ,
146
147
) -> List [str ]:
147
148
params = locals_to_params (
@@ -165,13 +166,20 @@ async def tap(
165
166
await self ._channel .send ("tap" , locals_to_params (locals ()))
166
167
167
168
async def fill (
168
- self , value : str , timeout : float = None , noWaitAfter : bool = None
169
+ self ,
170
+ value : str ,
171
+ timeout : float = None ,
172
+ noWaitAfter : bool = None ,
173
+ force : bool = None ,
169
174
) -> None :
170
175
await self ._channel .send ("fill" , locals_to_params (locals ()))
171
176
172
- async def select_text (self , timeout : float = None ) -> None :
177
+ async def select_text (self , force : bool = None , timeout : float = None ) -> None :
173
178
await self ._channel .send ("selectText" , locals_to_params (locals ()))
174
179
180
+ async def input_value (self , timeout : float = None ) -> str :
181
+ return await self ._channel .send ("inputValue" , locals_to_params (locals ()))
182
+
175
183
async def set_input_files (
176
184
self ,
177
185
files : Union [str , Path , FilePayload , List [Union [str , Path ]], List [FilePayload ]],
0 commit comments