We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Execute
null
1 parent eb3dd0f commit 4f3c8c5Copy full SHA for 4f3c8c5
dotnet/src/webdriver/WebDriver.cs
@@ -122,7 +122,7 @@ public string Title
122
get
123
{
124
Response commandResponse = this.Execute(DriverCommand.GetTitle, null);
125
- object returnedTitle = commandResponse?.Value ?? string.Empty;
+ object returnedTitle = commandResponse.Value ?? string.Empty;
126
127
return returnedTitle.ToString();
128
}
0 commit comments