interacting with awesominum webcontrol
问题 Can you find HTML elements in awesomium webcontrol to do the further processing? For example, I can find necessary element (or even element collection) in Watin using: Link playButton = myie.ElementOfType<Link>(Find.ById("myid")); // find link (<a>) Div test = myie.Div(Find.ById("audio")); // find div (<div>) When found - you can extract multiple properties of that element string classname = playButton.ClassName; // alternatively -> inner text, link, id, class and all bucket of other