I want to test a web application developed in angularjs, html5 and css3 with selenium webdriver. Currently I am trying to test a login page and when I view the source code of the page, I do not see any html5 code like tags or elements. How do I access these elements if they are hidden?
Asked
Active
Viewed 326 times
0
-
Many websites use client-side JavaScript to build part or all of the final rendered page. Whatever browser you're using probably has an "inspector" or developer tool that can help you to examine the page's DOM after it's been loaded and displayed. – rutter Dec 11 '13 at 00:49
-
@rutter Thanks for your response. I do not see any DOM for the page. I only see bunch of links for ".css" and sources for .js scripts but no html5 code. – user3088946 Dec 11 '13 at 01:27
-
possible duplicate of [Force Selenium to wait for AngularJS](http://stackoverflow.com/questions/20806399/force-selenium-to-wait-for-angularjs) – Paul Sweatte Jul 08 '14 at 16:11