You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket is aimed toward lessening the need for the actual browser for finding stuff while developping without ever having to use F12 developper tool.
The first item on the list:
An utility function to generate absolute xpath from the selected element.
Here's the current result.
Get-SeElementXPath -Element $MyElement
# Result
//html/body/div/div/div[2]/div/div/div/nav/div[2]/div[2]/ul/div[3]/div/li
It definitely does not produce the best xpath but give an idea of where you are in the tree.
Some ideas:
Same but for CSS Selector
Produce xpath based on different factor (eg: Classname or contains text)
The text was updated successfully, but these errors were encountered:
This ticket is aimed toward lessening the need for the actual browser for finding stuff while developping without ever having to use F12 developper tool.
The first item on the list:
An utility function to generate absolute xpath from the selected element.
Here's the current result.
It definitely does not produce the best xpath but give an idea of where you are in the tree.
Some ideas:
The text was updated successfully, but these errors were encountered: