Skip to content

Commit 047dcff

Browse files
fix(ui-tests): update brocken paths, names, comments for old and new ui-tests
1 parent ce525e5 commit 047dcff

22 files changed

+39
-39
lines changed

ui-tests/Helpers/CodetracerLauncher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using OpenQA.Selenium;
88
using OpenQA.Selenium.Chrome;
99

10-
namespace UtTestsExperimentalConsoleAppication.Helpers;
10+
namespace UiTests.Helpers;
1111

1212
internal static class CodetracerLauncher
1313
{

ui-tests/Helpers/PlayrwightLauncher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Diagnostics;
22
using Microsoft.Playwright;
3-
using UtTestsExperimentalConsoleAppication.Helpers;
3+
using UiTests.Helpers;
44

55
public static class PlaywrightLauncher
66
{

ui-tests/Helpers/SeleniumLauncher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Diagnostics;
22
using OpenQA.Selenium;
33
using OpenQA.Selenium.Chrome;
4-
using UtTestsExperimentalConsoleAppication.Helpers;
4+
using UiTests.Helpers;
55

66
public static class SeleniumLauncher
77
{

ui-tests/PageObjects/BasePage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Threading.Tasks;
22
using Microsoft.Playwright;
33

4-
namespace UtTestsExperimentalConsoleAppication.PageObjects;
4+
namespace UiTests.PageObjects;
55

66
/// <summary>
77
/// Base class for all pages in the Playwright test suite.

ui-tests/PageObjects/LayoutExtractors.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Threading.Tasks;
2-
using UtTestsExperimentalConsoleAppication.PageObjects.Models;
3-
using UtTestsExperimentalConsoleAppication.PageObjects.Panes.EventLog;
4-
using UtTestsExperimentalConsoleAppication.PageObjects.Panes.VariableState;
2+
using UiTests.PageObjects.Models;
3+
using UiTests.PageObjects.Panes.EventLog;
4+
using UiTests.PageObjects.Panes.VariableState;
55

6-
namespace UtTestsExperimentalConsoleAppication.PageObjects;
6+
namespace UiTests.PageObjects;
77

88
/// <summary>
99
/// Helper methods that convert page objects to their model representations.

ui-tests/PageObjects/LayoutModels.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace UtTestsExperimentalConsoleAppication.PageObjects.Models;
3+
namespace UiTests.PageObjects.Models;
44

55
/// <summary>
66
/// Models representing the extracted state of UI components.

ui-tests/PageObjects/LayoutPage.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
using System.Text.RegularExpressions;
44
using System.Threading.Tasks;
55
using Microsoft.Playwright;
6-
using UtTestsExperimentalConsoleAppication.PageObjects.Panes.EventLog;
7-
using UtTestsExperimentalConsoleAppication.PageObjects.Panes.VariableState;
8-
using UtTestsExperimentalConsoleAppication.PageObjects.Panes.CallTrace;
9-
using UtTestsExperimentalConsoleAppication.Utils;
6+
using UiTests.PageObjects.Panes.EventLog;
7+
using UiTests.PageObjects.Panes.VariableState;
8+
using UiTests.PageObjects.Panes.CallTrace;
9+
using UiTests.Utils;
1010

11-
namespace UtTestsExperimentalConsoleAppication.PageObjects;
11+
namespace UiTests.PageObjects;
1212

1313
/// <summary>
1414
/// Main layout page that contains all tabs and menu elements.

ui-tests/PageObjects/Panes/CallTrace/CallTracePane.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
using System.Linq;
33
using System.Threading.Tasks;
44
using Microsoft.Playwright;
5-
using UtTestsExperimentalConsoleAppication.PageObjects;
5+
using UiTests.PageObjects;
66

7-
namespace UtTestsExperimentalConsoleAppication.PageObjects.Panes.CallTrace;
7+
namespace UiTests.PageObjects.Panes.CallTrace;
88

99
/// <summary>
1010
/// Pane representing the call trace view.

ui-tests/PageObjects/Panes/CallTrace/CallTraceRecord.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.Playwright;
22

3-
namespace UtTestsExperimentalConsoleAppication.PageObjects.Panes.CallTrace;
3+
namespace UiTests.PageObjects.Panes.CallTrace;
44

55
/// <summary>
66
/// Represents a single record in the call trace pane.

ui-tests/PageObjects/Panes/EventLog/EventLogPane.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Text.RegularExpressions;
44
using System.Threading.Tasks;
55
using Microsoft.Playwright;
6-
using UtTestsExperimentalConsoleAppication.PageObjects;
6+
using UiTests.PageObjects;
77

8-
namespace UtTestsExperimentalConsoleAppication.PageObjects.Panes.EventLog;
8+
namespace UiTests.PageObjects.Panes.EventLog;
99

1010
/// <summary>
1111
/// Event log pane containing multiple event rows.

0 commit comments

Comments
 (0)