分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

selenium - webdriver - 定位一组元素

发布时间:2023-09-06 01:53责任编辑:顾先生关键词:selenium

八种方法:

find_elements_by_id()find_elements_by_name()find_elements_by_class_name()find_elements_by_tag_name()find_elements_by_link_text()find_elements_by_partial_link_text()find_elements_by_xpath()find_elements_by_css_selector()

  

实例:

from selenium import webdriverfrom time import sleepdriver = webdriver.Chrome()driver.get("http://www.baidu.com")driver.find_element_by_id("kw").send_keys("selenium")driver.find_element_by_id("su").click()sleep(5)texts = driver.find_elements_by_xpath("//div/h3/a")for t in texts: ???print(t.text)driver.quit()

  

运行结果:

seleniumselenium教程-90天从入门到高薪【学习必看】Selenium - Web Browser AutomationSelenium_百度百科Selenium - Web Browser Automation官网功能自动化测试工具——Selenium篇自动化测试工具Selenium入门 - CSDN博客python爬虫从入门到放弃(八)之 Selenium库的使用 - pytho..._博客园selenium用法详解 - 道高一尺 - 博客园selenium中文网 – selenium安装、selenium使用、selenium中文、...selenium-CSDN下载selenium自动化测试资源整理(含所有版本chrome、chrome..._CSDN博客自动化测试_2017新编自动化测试selenium课程selenium_"0基础"到熟练只要4个月_月薪过万不是梦【亚马逊】买selenium就上Z.CN_亚马逊海外购大牌"惠"聚_一键真..

  

参考资料:http://www.testclass.net/selenium_python/elements/

selenium - webdriver - 定位一组元素

原文地址:https://www.cnblogs.com/studyddup0212/p/9029063.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved