美文网首页我爱编程
时间控件输入

时间控件输入

作者: 我的自动化测试历程 | 来源:发表于2017-12-07 09:52 被阅读0次

    selenium.FindElementById("d1").Clear();

    selenium.FindElementById("d1").Click();

    selenium.SwitchTo().Frame(0);

    selenium.FindElementById("dpClearInput").Click();// 清除以前的值

    selenium.SwitchTo().DefaultContent();

    IJavaScriptExecutor removeAttribute = (IJavaScriptExecutor)selenium;

    removeAttribute.ExecuteScript("var setDate=document.getElementById(\"d1\");setDate.removeAttribute('readonly');");

    selenium.FindElementById("d1").SendKeys(stime);

    相关文章

      网友评论

        本文标题:时间控件输入

        本文链接:https://www.haomeiwen.com/subject/ayzrixtx.html