Skip to content

Commit 94c8c11

Browse files
committed
[dotnet] Restoring protected ElementFactory property
1 parent e1e690c commit 94c8c11

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

dotnet/src/webdriver/WebDriver.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,16 @@ internal INetwork Network
322322
get { return this.network; }
323323
}
324324

325+
/// <summary>
326+
/// Gets or sets the factory object used to create instances of <see cref="WebElement"/>
327+
/// or its subclasses.
328+
/// </summary>
329+
protected WebElementFactory ElementFactory
330+
{
331+
get { return this.elementFactory; }
332+
set { this.elementFactory = value; }
333+
}
334+
325335
/// <summary>
326336
/// Closes the Browser
327337
/// </summary>

0 commit comments

Comments
 (0)