python+rf 移除readonly属性

2020-12-15  本文已影响0人  只知坚持_d778

【python+selenium】移除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);

在robot framework 里 selenium.webdriver.remote.webelement.WebElemont对象是怎么运用到Excute Javascript 中去

${element}=    Get WebElement    xpath=${定位}
Excute Javascript   arguments[0].removeAttribute('readonly')   ARGUMENTS   ${element}
....

注:这种方式设计元素没有明确的定位,只能使用xpath的方式时比较方便,
如果有id,class容易定位的情况下,直接使用Excute Javascript 即可.
上一篇下一篇

猜你喜欢

热点阅读