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
{{ message }}
This repository has been archived by the owner on May 19, 2020. It is now read-only.
I want to write agouti functionality to click on the spaces like for a certain org. I start this by finding the link for the org by it's name:
nav.FindByLink('cforg')
Which puts me at the second <a> withing ul li. Now I want to get to the ul above and from there, go to the spaces link. In jquery this would be like nav.parent('ul').children('spaces'). But I can't do this in agouti because there's no parent method. There's no parent selector in CSS, making this impossible.
Any ideas on how I could write a test case like this without a parent method?
The text was updated successfully, but these errors were encountered:
Imagine the following nav:
I want to write agouti functionality to click on the spaces like for a certain org. I start this by finding the link for the org by it's name:
Which puts me at the second
<a>
withingul li
. Now I want to get to theul
above and from there, go to the spaces link. In jquery this would be likenav.parent('ul').children('spaces')
. But I can't do this in agouti because there's no parent method. There's no parent selector in CSS, making this impossible.Any ideas on how I could write a test case like this without a parent method?
The text was updated successfully, but these errors were encountered: