当前位置:网站首页>The 8 element positioning methods of selenium that you have to know are simple and practical
The 8 element positioning methods of selenium that you have to know are simple and practical
2022-07-07 02:42:00 【Xiaowu knock code】
The most basic part of automation belongs to positioning elements , Elements are not positioned , Basically, the regiment has been destroyed , You don't have to think about automation anymore .
Eight positioning methods
Selenium Positioning elements are basically the same as appium The method of locating elements is the same , Here is a test based on Baidu website .
id location
By understanding HTML You can know id It's the only way to say , By looking for id To find
find_element_by_id()
name location
name stay HTML Usually refers to the name of the element
find_element_by_name()
tag location
adopt HTML You can see that tag Define elements of different pages .
find_element_by_tag_name()
class location
adopt HTML come to know class Refers to the class name of the element
find_element_by_class_name()
link_text location
link_text Literally, it is located in the form of text
find_element_by_link_text()
partial_link location
partial_link It belongs to link_text Supplementary positioning method of , Locate some content with long text
find_element_by_partial_link_text()
xpath location
xpath There are many positioning strategies , There are many ways to locate, such as :name,text,class etc. , You can write an article about Xpath Positioning method of
find_element_by_xpath()
Css_selector location
Css It's a language , Usually Css The speed ratio of the positioning method xpath Fast , It's just a little difficult , In reptiles pyquery It is through Css To achieve .
find_element_by_css_selector()
This paper briefly introduces eight positioning methods , You can try it in practice , Write more code , To make the code more proficient .
Finally, thank everyone who reads my article carefully , The following online link is also a very comprehensive one that I spent a few days sorting out , I hope it can also help you in need !

These materials , For those who want to change careers 【 software test 】 For our friends, it should be the most comprehensive and complete war preparation warehouse , This warehouse also accompanied me through the most difficult journey , I hope it can help you ! Everything should be done as soon as possible , Especially in the technology industry , We must improve our technical skills . I hope that's helpful ……
If you don't want to grow up alone , Unable to find the information of the system , The problem is not helped , If you insist on giving up after a few days , You can click the small card below to join our group , We can discuss and exchange , There will be various software testing materials and technical exchanges .
| Click the small card at the end of the document to receive it |
Typing is not easy , If this article is helpful to you , Click a like, collect a hide and pay attention , Give the author an encouragement . It's also convenient for you to find it quickly next time .
Self study recommendation B Stop video :
Zero basis transition software testing : Self taught software testing , Got the byte test post offer, Is the B The best video station !
Advanced automation testing : Huawei has landed , Salary increase 20K,2022 Most suitable for self-study python Automated test tutorial , Spend it yourself 16800 Bought , Free sharing
边栏推荐
- [leetcode]Search for a Range
- Remember the problem analysis of oom caused by a Jap query
- MySQL
- 实施MES管理系统时,哪些管理点是需要注意的
- 运维管理系统有哪些特色
- Google Earth Engine(GEE)——Landsat 全球土地调查 1975年数据集
- The so-called consumer Internet only matches and connects industry information, and does not change the industry itself
- [unity notes] screen coordinates to ugui coordinates
- Processus général de requête pour PostgreSQL
- What are the applications and benefits of MES management system
猜你喜欢
随机推荐
Overall query process of PostgreSQL
Digital scrolling increases effect
Google Earth engine (GEE) -- 1975 dataset of Landsat global land survey
Summer Challenge database Xueba notes (Part 2)~
安全交付工程师
记一次JAP查询导致OOM的问题分析
Web3的先锋兵:虚拟人
Why am I warned that the 'CMAKE_ TOOLCHAIN_ FILE' variable is not used by the project?
C#/VB.NET 删除Word文档中的水印
1个月增长900w+播放!总结B站顶流恰饭的2个新趋势
leetcode:5. Longest palindrome substring [DP + holding the tail of timeout]
PCL 常用拟合模型及使用方法
Work of safety inspection
安全巡检的工作
3 -- Xintang nuc980 kernel supports JFFS2, JFFS2 file system production, kernel mount JFFS2, uboot network port settings, and uboot supports TFTP
4 -- Xintang nuc980 mount initramfs NFS file system
Derivative, partial derivative, directional derivative
Summary of basic debugging steps of S120 driver
[C # notes] use file stream to copy files
MFC Windows 程序设计[147]之ODBC数据库连接(附源码)









