Re: [webkit-dev] Interact with DOM Elements using WebKit

2009-04-22 Thread Prema Arya
Hi, Following the C# code: view = new WebViewClass(); view.setHostWindow(this.panel1.Handle.ToInt32()); WebKit.tagRECT rect; rect.bottom = rect.top = rect.left = rect.right = 0; view.initWithFrame(rect, null, null); WebKit.WebURLRequestClass req

Re: [webkit-dev] Interact with DOM Elements using WebKit

2009-04-21 Thread Conrad Taylor
On Tue, Apr 21, 2009 at 3:34 AM, Prema Arya wrote: > Hi, > I was able to use webkit in my C# application on windows. I am able to load > a page using loadRequest() method. Now i want to interact with elements on > the page. I tried using getElementById() which returns the element. I was > able to

[webkit-dev] Interact with DOM Elements using WebKit

2009-04-21 Thread Prema Arya
Hi, I was able to use webkit in my C# application on windows. I am able to load a page using loadRequest() method. Now i want to interact with elements on the page. I tried using getElementById() which returns the element. I was able to enter text in text boxes and change values of button. But when