public StateTaxRatesTab SelectTaxPaymentFrequencyDropDown()
 {
     var selectTaxPaymentFrequencyDropDown = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(1000);
     TaxPaymentFrequencyDropDown.ClickAndWaitForPageToLoad(selectTaxPaymentFrequencyDropDown);
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab MoveToBottomElement()
 {
     var moveToBottomElement = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(1000);
     BottomElement.Click();
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab SelectQuarterStartDateDropDown()
 {
     var selectQuarterStartDateDropDown = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(1000);
     QuarterStartDateDropDown.ClickAndWaitForPageToLoad(selectQuarterStartDateDropDown);
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab SelectStateTaxAccountDropDown()
 {
     var selectStateTaxAccountDropDown = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(1000);
     StateTaxAccountDropDown.ClickAndWaitForPageToLoad(selectStateTaxAccountDropDown);
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab SelectDeleteTaxPaymentFrequencyBtn()
 {
     var selectDeleteTaxPaymentFrequencyBtn = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(2000);
     DeleteTaxPaymentFrequencyBtn.Click();
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab SelectEditTaxPaymentFrequencyBtn()
 {
     var selectEditTaxPaymentFrequencyBtn = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(4000);
     EditTaxPaymentFrequencyBtn.ClickAndWaitForPageToLoad(selectEditTaxPaymentFrequencyBtn);
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab SelectAddedVaSitBtn()
 {
     var selectAddedVaSitBtn = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(2000);
     AddedVaSitBtn.ClickAndWaitForPageToLoad(selectAddedVaSitBtn);
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab ClearStopDate()
 {
     var clearQuarterStopDate = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(2000);
     ClearQuarterStopDateDropDown.ClickAndWaitForPageToLoad(clearQuarterStopDate);
     StopDatePaymentFrequencyField.Clear();
     return new StateTaxRatesTab(WebDriver);
 }
 public StateTaxRatesTab SelectStartDatePaymentFrequencyField()
 {
     var selectStartDatePaymentFrequencyField = new StateTaxRatesTab(WebDriver);
     Thread.Sleep(1000);
     StartDatePaymentFrequencyField.Clear();
     StartDatePaymentFrequencyField.SendKeys("2012");
     return new StateTaxRatesTab(WebDriver);
 }