Skip to content

Commit

Permalink
Fix protected overriding of WrappedElement
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Jan 14, 2024
1 parent 4d96d72 commit 376dbdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace {{namespace}}

}

public override global::Microsoft.Playwright.ILocator WrappedElement
protected override global::Microsoft.Playwright.ILocator WrappedElement
{
get
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public partial class {{$1.singular_name}}Component : {{if $1.base_component}}glo
base.oneTimeConditions = new OneTimeConditions(this, timeoutOptions.Timeout, timeoutOptions.PollingInterval, webDriver, elementHandler, elementLocator, EventSource, _logger);
}

public override global::Microsoft.Playwright.ILocator WrappedElement
protected override global::Microsoft.Playwright.ILocator WrappedElement
{
get
{
Expand Down

0 comments on commit 376dbdd

Please sign in to comment.