美文网首页
selenium By八种方式定位元素

selenium By八种方式定位元素

作者: Lydia1991 | 来源:发表于2020-07-06 15:55 被阅读0次
    from selenium.webdriver.common.by import By
    
    # id属性定位
    find_element(By.ID,"id")
    # name属性定位
    find_element(By.NAME,"name")
    # classname属性定位
    find_element(By.CLASS_NAME,"claname")
    # a标签文本属性定位
    find_element(By.LINK_TEXT,"text")
    # a标签部分文本属性定位
    find_element(By.PARTIAL_LINK_TEXT,"partailtext")
    # 标签名定位
    ·find_elemnt(By.TAG_NAME,"input")
    # xpath路径定位
    find_element(By.XPATH,"//div[@name='name']")
    # css选择器定位
    find_element(By.CSS_SELECTOR,"#id")
    

    相关文章

      网友评论

          本文标题:selenium By八种方式定位元素

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