如何使用C#selenium自动化Md2-datepicker?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用C#selenium自动化Md2-datepicker?相关的知识,希望对你有一定的参考价值。

在现实生活中,我们没有自动日期选择器。

我们通常将日期作为文本注入日期字段。但万一这是不可能的。因此考虑自动化应用程序中使用的日期选择器。

由于大多数网络应用程序正在迁移到角度最新或角度开发,我认为这将有助于每个人帮助自动化使用的日期选择器。特别是md2-datepicker。

答案

添加帮助程序类以进行日期选择。

 public class DatePickerSelection
    {
        public const string cellSelector = ".md2-calendar-body-cell > .md2-calendar-body-cell-content";

        public static void SetCalenderDate(IWebDriver driver, string EnteredDate)
        {
            string[] dateEntered = EnteredDate.Split("/".ToCharArray()); //to split the dates into day, month and year value
            int month = int.Parse(dateEntered[0]);
            string mon = CultureInfo.CurrentCulture.DateTimeFormat.GetAbbreviatedMonthName(month);
            int day = int.Parse(dateEntered[1]);
            int year = int.Parse(dateEntered[2]);

            int NoOfClicks = DateTime.Now.Year - year; //to select the year
            driver.FindElement(By.CssSelector("div.md2-calendar-header-year")).Click();
            for (int i = 0; i < NoOfClicks; i++)
            {
                driver.FindElement(By.CssSelector("div.md2-calendar-next-button")).Click();
            }
            IjavascriptExecutor js = (IJavaScriptExecutor)driver;
            js.ExecuteScript("document.body.style.zoom='100%'");
            SetMonthAndDate(driver, mon, day);
        }
        public static void SetMonthAndDate(IWebDriver driver, string month, int day)
        {
            SelectMonth(driver, month);
            SelectDay(driver, day.ToString());
        }

        public static void SelectMonth(IWebDriver driver, string mon)
        {
            IList<IWebElement> webElements = driver.FindElements(By.CssSelector(cellSelector));
            IWebElement text = webElements.FirstOrDefault(x => x.Text.ToLower().Equals(mon.ToLower()));
            text.Click();
            Thread.Sleep(Timing.TimeOut);
        }

        public static void SelectDay(IWebDriver driver, string day)
        {
            IList<IWebElement> webElements = driver.FindElements(By.CssSelector(cellSelector));
            IWebElement text = webElements.FirstOrDefault(x => x.Text.Contains(day));
            text.Click();
            Thread.Sleep(Timing.TimeOut);
        }
    }

在测试中,调用DatePickerSelection类中的SetCalenderDate。

string startDate = DateTime.Today.ToShortDateString();
SetCalenderDate(driver, startDate);

以上是关于如何使用C#selenium自动化Md2-datepicker?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 C# selenium 自动化 Md2-datepicker?

如何利用selenium来进行自动化页面测试

如何提高自动化测试的执行效率 selenium java

selenium rc ie10 如何截图

selenium 如何在已打开的浏览器上继续运行自动化脚本?

如何使用Selenium-Grid