Skip to content

Commit

Permalink
Fix extension method extra unused arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Oct 15, 2022
1 parent b6e391d commit d2bf94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Query/QueryExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public static DriverQuery LongPress(this DriverQuery query)
public static DriverQuery InputText(this DriverQuery query, string text)
=> query.Append(new InteractionQueryStep((driver, element) => driver.InputText(element, text)));

public static DriverQuery ClearText(this DriverQuery query, string text)
public static DriverQuery ClearText(this DriverQuery query)
=> query.Append(new InteractionQueryStep((driver, element) => driver.ClearText(element)));
}

Expand Down

0 comments on commit d2bf94a

Please sign in to comment.