Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Quality Assurance Intermediate Selenium WebDriver Input Actions Locating Elements Using JavaScript

Jamilya Masylbekova
Jamilya Masylbekova
3,969 Points

Overcomplicated element location using loop.

What's the benefit of locating button using loop? If you could just used css nth-of-type?

1 Answer

andren
andren
28,558 Points

While it is indeed overkill for the page used in this demonstration, it is in general far more reliable than using than using nth-of-type would be. When writing automation code you should always try to make the code flexible enough that even if the page is rearranged or modified a bit the code should still work.

If you used nth-of-type then you are relying on the save button always being the second button on the page, if that ever changed (which is not that unlikely on a real web page) then the code would break.