calculator/src/CalculatorUITestFramework/ScientificCalculatorPage.cs
Rose 91adfd8e9e
Run C# import cleanup based on the Solution files (#1838)
This is to make the style consistent with the rest of the project as well as removing unused imports.
2022-06-14 15:56:37 +08:00

50 lines
1.9 KiB
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using OpenQA.Selenium.Appium.Windows;
namespace CalculatorUITestFramework
{
/// <summary>
/// This class contains the UI automation objects and helper methods available when the Calculator is in Scientific Mode.
/// </summary>
public class ScientificCalculatorPage
{
private WindowsDriver<WindowsElement> session => WinAppDriver.Instance.CalculatorSession;
public ScientificOperatorsPanel ScientificOperators = new ScientificOperatorsPanel();
public StandardOperatorsPanel StandardOperators = new StandardOperatorsPanel();
public MemoryPanel MemoryPanel = new MemoryPanel();
public HistoryPanel HistoryPanel = new HistoryPanel();
public NavigationMenu NavigationMenu = new NavigationMenu();
public WindowsElement Header => this.session.TryFindElementByAccessibilityId("Header");
public CalculatorResults CalculatorResults = new CalculatorResults();
public void NavigateToScientificCalculator()
{
// Ensure that calculator is in scientific mode
this.NavigationMenu.ChangeCalculatorMode(CalculatorMode.ScientificCalculator);
}
/// <summary>
/// Clear the Calculator display, Memory Panel and optionally the History Panel
/// </summary>
public void ClearAll()
{
string source = this.session.PageSource;
if (source.Contains("clearEntryButton"))
{
this.StandardOperators.ClearEntryButton.Click();
source = this.session.PageSource;
}
if (source.Contains("clearButton"))
{
this.StandardOperators.ClearButton.Click();
}
MemoryPanel.ResizeWindowToDisplayMemoryLabel();
HistoryPanel.ClearHistory();
}
}
}