Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Samples/Tests/Tests/Control/GridViewTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public void Control_GridView_GridViewInlineEditingValidation()
{
RunInAllBrowsers(browser => {
browser.NavigateToUrl(SamplesRouteUrls.ControlSamples_GridView_GridViewInlineEditingValidation);
browser.Driver.Manage().Window.Maximize();

//Get rows
var rows = browser.First("table tbody");
Expand Down
2 changes: 0 additions & 2 deletions src/Samples/Tests/Tests/Control/HierarchyRepeaterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public void Control_HierarchyRepeater_Basic()
{
RunInAllBrowsers(browser => {
browser.NavigateToUrl(SamplesRouteUrls.ControlSamples_HierarchyRepeater_Basic);
browser.Driver.Manage().Window.Maximize();

AssertUI.InnerTextEquals(browser.First("HR-Empty", SelectByDataUi), "");
AssertUI.InnerTextEquals(browser.First("HR-EmptyData", SelectByDataUi), "There are no nodes.");
Expand Down Expand Up @@ -58,7 +57,6 @@ public void Control_HierarchyRepeater_WithMarkupControl()
{
RunInAllBrowsers(browser => {
browser.NavigateToUrl(SamplesRouteUrls.ControlSamples_HierarchyRepeater_WithMarkupControl);
browser.Driver.Manage().Window.Maximize();

IElementWrapper getNode(string hr, params int[] index)
{
Expand Down
Loading