selenium更改readonly属性
1.用js实现
JavascriptExecutor removeAttribute = (JavascriptExecutor)dr;
//remove readonly attribute
//removeAttribute.executeScript("var setDate=document.getElementById(\"startTime1\");setDate.removeAttribute('readonly');")
2.设置属性为false
String str = "document.getElementById(\"startTime1\").readonly=false";
******************************************************************************************************************************************
作者:乔叶叶
博客地址:http://www.cnblogs.com/qiaoyeye/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
******************************************************************************************************************************************
作者:乔叶叶
博客地址:http://www.cnblogs.com/qiaoyeye/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
******************************************************************************************************************************************