美文网首页
selenium 拖拽元素

selenium 拖拽元素

作者: 木下瞳 | 来源:发表于2019-07-25 18:21 被阅读0次

    了解更多关注微信公众号“木下学Python”吧~

    https://blog.csdn.net/u012605082/article/details/80911513

    element = driver.find_element_by_name("source")target = driver.find_element_by_name("target") from selenium.webdriver import ActionChainsaction_chains = ActionChains(driver)action_chains.drag_and_drop(element,target).perform()
    

    相关文章

      网友评论

          本文标题:selenium 拖拽元素

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