I'm new to using Selenium 2 (via the Firefox Plugin) -- I haven't found this answer elsewhere on the net.
Is it possible to verify if a <script>
element is present in the code of a page?
I need to frequently check a number of pages that require a range of script links and on page script block elements. I haven't been able to figure this part out. One example is to check to see if the Google Analytics script is on a page. Here's the sample code that is expected:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||'
function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'xx-x-0000-00', 'somedomain.com');
</script>
Thank you in advance!