๐๐๐๐ญ๐ก & ๐๐๐ ๐๐๐ฅ๐๐๐ญ๐จ๐ซ ๐๐๐๐ก๐ง๐ข๐ช๐ฎ๐๐ฌ ๐๐จ๐ซ ๐๐ฎ๐ญ๐จ๐ฆ๐๐ญ๐ข๐จ๐ง ๐๐๐ฌ๐ญ๐ข๐ง๐
โ๏ธ XPath Functions & Axes
- `text()`โ Matches elements based on exact text.
`//div[text()='login_id']`
- `normalize-space()`โ Trims extra spaces before matching text.
`//div[normalize-space()='login test']`
- `contains()`โ Finds elements containing a substring.
`//input[contains(@id, 'username')]`
- `starts-with()`โ Selects elements whose attribute starts with a string.
`//button[starts-with(@class, 'btn')]`
- `position()`โ Retrieves elements based on their position in a set.
`(//ul[@class='menu']/li)[position()=2]`
- `last()`โ Selects the last element in a node set.
`(//table//tr)[last()]`
- `count()`โ Counts the number of matching elements.
`count(//input[@type='checkbox'])`
- `ancestor::`โ Finds all ancestors of an element.
`//a[text()='Logout']/ancestor::div`
- `following-sibling::`โ Selects all following siblings.
`//label[text()='Email']/following-sibling::input`
- `parent::`โ Selects the immediate parent element.
`//span[text()='Username']/parent::div`
- `descendant::`โ Finds all descendants of an element.
`//div[@class='container']/descendant::input`
- `translate()`โ Normalizes text by replacing or removing characters.
`//input[contains(translate(@id, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'),'username')]`
โ๏ธ CSS Selector Techniques
- Tag & Attribute Selectorโ Matches an element with a specific attribute.
`input[id='username']`
- Class Selectorโ Matches elements with a specific class.
`.btn-primary`
- ID Selectorโ Selects an element with a unique ID.
` login-button`
- Attribute Contains (`*=`)โ Finds elements where an attribute contains a substring.
`input[id*='user']`
- Attribute Starts With (`^=`)โ Matches elements where an attribute starts with a string.
`button[class^='btn']`
- Attribute Ends With (`$=`)โ Matches elements where an attribute ends with a string.
`img[src$='.png']`
- Direct Child Selector (`>`)โ Selects a direct child of an element.
`div > input`
- General Sibling Selector (`~`)โ Selects all siblings after a specific element.
`label ~ input`
- Adjacent Sibling Selector (`+`)โ Selects the immediate next sibling.
`label + input`
- Nth-Child Selector (`nth-child(n)`)โ Selects the nth child of an element.
`ul.menu li:nth-child(2)`
- First & Last Child Selectorโ Selects the first or last child of a parent element.
`ul.menu li:first-child`
`ul.menu li:last-child`
- Not Selector (`:not()`)โ Excludes elements that match a certain condition.
`input:not([type='submit'])`
0 comments:
Post a Comment