private void SelectCalculator(CalculatorType calculatorType)
        {
            _driver.FindElementByAccessibilityId("TogglePaneButton").Click();
            _driver.FindElementByAccessibilityId(calculatorType.ToString()).Click();

            //var el = _waiter.Until(ExpectedConditions.ElementExists(By.Name("One")));
            //Assert.IsNotNull(el);
        }
 protected void SelectCalculator(CalculatorType calculatorType)
 {
     _driver.FindElementByAccessibilityId("TogglePaneButton").Click();
     _driver.FindElementByAccessibilityId(calculatorType.ToString()).Click();
 }