Good morning all
I have this concern that I cannot understand. Here is my code:
foreach (GeckoIFrameElement _E in wb.Document.GetElementsByTagName("iframe"))
{
if (_E.Name == NameIframe)
{
try
{
var innerHTML = _E.ContentDocument;
if (innerHTML != null)
{
foreach (GeckoHtmlElement _A in innerHTML.GetElementsByTagName(BaliseRecherche))
{
MessageBox.Show(_A.GetAttribute(AttributRecherche));
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
The innerthml is still empty even though my page is correctly loaded and displayed?
Thank you in advance for your replies
Try to get teh
iframeDOM: