Skip to content

Commit

Permalink
Updating .NET setAlertText implementation to match W3C spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jan 19, 2016
1 parent bc5ad70 commit e1c317c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Remote/RemoteAlert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void SendKeys(string keysToSend)
Dictionary<string, object> parameters = new Dictionary<string, object>();
if (this.driver.IsSpecificationCompliant)
{
parameters.Add("message", keysToSend);
parameters.Add("text", keysToSend.ToCharArray());
}
else
{
Expand Down

0 comments on commit e1c317c

Please sign in to comment.