首页 > 其他分享 >webdriver根据XPath相对路径获取元素

webdriver根据XPath相对路径获取元素

时间:2023-06-23 10:23:38浏览次数:49  
标签:XPath webdriver driver 相对路径 import div

webdriver根据XPath相对路径获取元素

#encoding = utf-8
import time
from selenium import webdriver
from selenium.webdriver.common.by import By

driver = webdriver.Chrome()

#打开百度首页
driver.get("https://passport.meituan.com/account/unitivelogin?")
#根据相对路径获取元素
driver.find_element(by=By.XPATH,value="/html/body/div[5]/div/div[2]/form[1]/div[2]/input[2]").send_keys("134")
#暂停6秒
time.sleep(6)

  

标签:XPath,webdriver,driver,相对路径,import,div
From: https://www.cnblogs.com/dongtian/p/17498778.html

相关文章

  • webdriver根据绝对路径标签id属性进行定位
    webdriver根据绝对路径标签id属性进行定位#encoding=utf-8importtimefromseleniumimportwebdriverfromselenium.webdriver.common.byimportBydriver=webdriver.Chrome()#打开百度首页driver.get("https://passport.meituan.com/account/unitivelogin?")#根......
  • webdriver根据PARTIAL_LINK_TEXT获取元素
    webdriver根据PARTIAL_LINK_TEXT获取元素#encoding=utf-8importtimefromseleniumimportwebdriverfromselenium.webdriver.common.byimportBydriver=webdriver.Chrome()#打开百度首页driver.get("https://www.baidu.com")#根据PARTIAL_LINK_TEXT获取元素dri......
  • webdriver根据class_name获取元素
    webdriver根据class_name获取元素#encoding=utf-8importtimefromseleniumimportwebdriverfromselenium.webdriver.common.byimportBydriver=webdriver.Chrome()#打开百度首页driver.get("https://www.baidu.com")#根据class_name获取元素driver.find_eleme......
  • webdriver根据name名称获取元素
    #encoding=utf-8importtimefromseleniumimportwebdriverfromselenium.webdriver.common.byimportBydriver=webdriver.Chrome()#打开百度首页driver.get("https://www.baidu.com")#根据name名称获取元素driver.find_element(by=By.NAME,value="wd").send_keys......
  • webdriver根据LINK_TEXT获取元素
    webdriver根据LINK_TEXT获取元素#encoding=utf-8importtimefromseleniumimportwebdriverfromselenium.webdriver.common.byimportBydriver=webdriver.Chrome()#打开百度首页driver.get("https://www.baidu.com")#根据LINK_TEXT获取元素driver.find_element......
  • webdriver根据id获取元素
    #coding=utf-8importtimefromseleniumimportwebdriverfromselenium.webdriver.common.byimportBy#webdriver根据id获取元素#打开chrome浏览器,输入百度搜索,搜索python相关信息driver=webdriver.Chrome()#打开百度首页driver.get("https://www.baidu.com")#输入框上送内......
  • svg clipPath的clipPathUnits和相对路径转换
    clipPathUnits属性用来指定<clipPath>元素内容的坐标系,有2种取值:clipPathUnits="userSpaceOnUse|objectBoundingBox"clipPathUnits="userSpaceOnUse|objectBoundingBox"userSpaceOnUse表示当前网页所使用的屏幕坐标系objectBoundingBox则把坐标空间的原点调整到被......
  • xpath定位
    Xpath定位1)、语法拆解//[@id="username"]其中//是dom节点的根节点;是指所有的元素;[]括号是将属性的键值对放入;@id是指属性为id的;后边的是赋值。name属性定位//*[@name="name_value"]这样的。type属性定位//*[@type="type_value"]。父/子元素定位//*[@class="f......
  • Qt+QtWebApp开发笔记(六):http服务器html实现静态相对路径调用第三方js文件
    前言  前面做了一些交互,网页是直接通过html对response进行返回的,这里QtWebApp与传统的web服务器不同,传统的web服务器可以调用同级目录相对路径或者绝对路径下的js,而QtWebApp的httpserver是response返回当前页面的问题,默认是无法调用的。  为了解决调用一些依赖的如echarts......
  • java中相对路径,绝对路径问题总结
    java中相对路径,绝对路径问题总结2007-12-2000:191.基本概念的理解绝对路径:绝对路径就是你的主页上的文件或目录在硬盘上真正的路径,(URL和物理路径)例如:C:\xyz\test.txt代表了test.txt文件的绝对路径。http://www.sun.com/index.htm也代表了一个URL绝对路径。......