-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectors
More file actions
27 lines (24 loc) · 862 Bytes
/
selectors
File metadata and controls
27 lines (24 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
************Selectors or locators:
id
name
className
tagName
link text
partial link text
CSS Selectors:
tag[attribute='value']
#id
.class.name
tag[*attribute='val']
tag[attribute='value'] tag:nth-child(index) tag:nth-child(index) tag:nth-child(index) tag:nth-child(index)
Xpath:
//tag[@attribute='value']
//tag[contains(@attribute,'val')]
//tag[text()='value']
//tag[contains(text(),'val')]
//tag[@attribute='value']/tag[index]/tag[index]/tag[index]/tag[index] --> parent-child relationship
//tag[@attribute='value']/parent::tag/parent::tag/parent::tag/parent::tag --> child-parent relationship
//tag[@attribute='value']/../../../.. --> child-parent relationship
//tag[@attribute='value']/following-sibling::tag
//tag[@attribute='value']/preceding-sibling::tag
/html/body/tag[index]/tag[index]/tag[index]/tag[index]/tag[index]/tag[index]/tag[index]/tag[index]