Skip to content

Commit

Permalink
Removed unwanted code section.
Browse files Browse the repository at this point in the history
  • Loading branch information
NanthiniMahalingam authored and rmarinho committed Sep 27, 2024
1 parent 475ae44 commit 083a566
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
12 changes: 3 additions & 9 deletions src/Controls/tests/TestCases.HostApp/Issues/Issue18452.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@
x:Class="Maui.Controls.Sample.Issues.Issue18452"
xmlns:ns="clr-namespace:Maui.Controls.Sample.Issues">

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackLayout Grid.Row="1" Padding="10">
<WebView x:Name="webView" AutomationId="WebViewControl" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" />
</StackLayout>
</Grid>
<StackLayout Padding="10">
<WebView x:Name="webView" AutomationId="WebView" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" />
</StackLayout>
</ContentPage>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public Issue18452(TestDevice device) : base(device)
[Category(UITestCategories.WebView)]
public void WebViewLoadedWithoutException()
{
App.WaitForElement("WebViewControl");
App.WaitForElement("WebView");

VerifyScreenshot();
}
Expand Down

0 comments on commit 083a566

Please sign in to comment.