Skip to content

Commit 4f3c8c5

Browse files
committed
Execute cannot return null
1 parent eb3dd0f commit 4f3c8c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/WebDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public string Title
122122
get
123123
{
124124
Response commandResponse = this.Execute(DriverCommand.GetTitle, null);
125-
object returnedTitle = commandResponse?.Value ?? string.Empty;
125+
object returnedTitle = commandResponse.Value ?? string.Empty;
126126

127127
return returnedTitle.ToString();
128128
}

0 commit comments

Comments
 (0)