i coding a small app with some funtion:
can add text to textbox of community(Gplus) and submit my post, but i get fist problem!
my code:
int num = 0;
HtmlElementCollection elementsByTagName = this.webBrowser1.Document.Body.GetElementsByTagName("div");
for (num = 0; num < elementsByTagName.Count; num++)
{
if (elementsByTagName[num].OuterHtml.Contains("URaP8 Kf Pf b-K b-K-Xb"))
{
elementsByTagName[num].Focus();
elementsByTagName[num].InnerText = txtcontent.Text;
}
//break;
}
this code not work for me!
so! anybody can help me?
thanks