标签:
例子如下:删除元素D下面 readonly属性
d=driver.find_element_by_xpath("//*[@id=‘divform‘]/div[2]/ul[2]/li[3]/span[2]/input[1]")driver.execute_script(‘arguments[0].removeAttribute(\"readonly\")‘, d);
selenium+python操作js页面,删除某个元素
原文地址:http://www.cnblogs.com/hustar0102/p/5586712.html