How to use CSS Selector (Example) in ATS

0
Hi! I have a question regarding finding an element on a page which is not unique in name. The mx-name is newly created every time the page refreshes, so I cannot user the mx-name. The only differences I can spot between the two elements is that the one has a glyphicon-minus in front of it, and the other is in a list <li>. Can someone help me locate both elements? 
asked
2 answers
0

ATS offers multiple options for finding elements, css, sizzle and XPath.

Sizzle is really powerful as it allows you to combine css with other selectors. Here is an example of selecting an element based on the class and a caption

answered
0

:) I got it working with li:nth-child(3)

answered