Skip to content

Commit

Permalink
[dotnet] Restoring protected ElementFactory property
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Oct 11, 2021
1 parent e1e690c commit 94c8c11
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions dotnet/src/webdriver/WebDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,16 @@ internal INetwork Network
get { return this.network; }
}

/// <summary>
/// Gets or sets the factory object used to create instances of <see cref="WebElement"/>
/// or its subclasses.
/// </summary>
protected WebElementFactory ElementFactory
{
get { return this.elementFactory; }
set { this.elementFactory = value; }
}

/// <summary>
/// Closes the Browser
/// </summary>
Expand Down

0 comments on commit 94c8c11

Please sign in to comment.