Hi:
Got it with:
string
_validationErrorsXPath =
"//*[@id='loginForm']/fieldset/div/ul"
;
...
return
_browser.Find.ByXPath<HtmlUnorderedList>(_validationErrorsXPath).Find.ByTagIndex(
"li"
, 0).InnerMarkup;
But I am still missing a large piece of understanding, of why it wasn't working other ways!
Phil