WatIn provides great functionality for programmatic access to the displayed parts of a Web page.

I want to access the head part of the page, spedifically the META tags. Watin allows me access to the TITLE, but AFAICT nothing else. There is an InternetExplorer property which allows access to ShDocVw.InternetExplorer. I suspect this might be the start of the path. Even if it is the right path, I don't know how to follow it.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted
browser
    .Element(Find.ByName(nameAttribute))
    .GetAttributeValue("content");
link|improve this answer
Thanks - this got me to ie.Element(Find.ByName("KEYWORDS")).GetAttributeValue("content"); I also found success with ie.Elements.Where(el => el.Id == "MetaKeywords") – RichardHowells Apr 1 '09 at 18:30
y, if you also have the id set to MetaKeywords (as your second way points reflects) you could just: ie.Element("MetaKeywords") :) – eglasius Apr 1 '09 at 18:39
feedback

This will give you a collection of meta tags in your page.

Syntax in WatiN 2.0 beta 1:

var metaTags = browser.ElementsWithTag("meta");

Syntax in WatiN 2.0 CTPs and earlier:

var metaTags  = browser.Elements.Filter(Find.By("tagName", "META"));

If you prever the following syntax, read my blog post about adding elements to WatiN:

var metaTags = browser.ElementsOfType<Meta>();
link|improve this answer
Hi - I could not get this to compile on my WatiN install (1.3.0) - Elements is just a property for me. – RichardHowells Apr 1 '09 at 18:28
Sorry, I have corrected the example – Jeroen van Menen Apr 3 '09 at 7:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.