hi qtlers!

im trying to login with the webview control into this site: http://www.team-ulm.de (german language but it doesnt matter)
i need to fill out the "Login" field on the left side.

I tryed that:
Qt Code:
  1. ui->webView->page()->mainFrame()->evaluateJavaScript("document.getElementById('benutzer').innerText = \"hi\";");
To copy to clipboard, switch view to plain text mode 

nothing happens. but when i try

Qt Code:
  1. ui->webView->page()->mainFrame()->evaluateJavaScript("alert(\"hi\")");
To copy to clipboard, switch view to plain text mode 

it works. but it isnt what i want^^

im working in windows.

i hope someone can help me..

ouned

ps: in visual studio it works like that:

Qt Code:
  1. webBrowser1.Document.GetElementById("benutzer").InnerText = "hi";
To copy to clipboard, switch view to plain text mode