美文网首页
python+rf 移除readonly属性

python+rf 移除readonly属性

作者: 只知坚持_d778 | 来源:发表于2020-12-15 11:10 被阅读0次

    【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 即可.
    

    相关文章

      网友评论

          本文标题:python+rf 移除readonly属性

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