こんにちは、WPF/C# でのプログラミングと awesomium WebControl の使用
これをクリックしようとしています:
<li class="playlist-item-favorite" data-title="Ulubione" data-is-private="False">
<a href="javascript: void(0);">
<span class="playlist-title">
Ulubione
<span class="playlist-video-count-container">
(<span class="playlist-video-count">1</span>)
</span>
</span>
<span class="playlist-public-private">
Publiczny
</span>
</a>
</li>
私のコードC#:
dynamic lists = (JSObject)Browser.ExecuteJavascriptWithResult("document.getElementsByClassName('playlist-item-favorite')");
if (lists == null)
return;
length = lists.length;
if (length == 0)
return;
using (lists)
{
using (JSObject obiekt = lists.Invoke("item", 0))
obiekt.InvokeAsync("click");
}
}
このオブジェクトを見つけたのはわかっています。属性を取得したときは問題ありませんでしたが、クリックしても機能しません。
このオブジェクトのメソッドを示しますが、click や onclick のようなメソッドはありません。方法:
insertAdjacentHTML
insertAdjacentText
insertAdjacentElement
getAttribute
setAttribute
removeAttribute
getAttributeNode
getElementsByTagName
getAttributeNS
setAttributeNS
removeAttributeNS
getElementsByTagNameNS
getAttributeNodeNS
hasAttribute
hasAttributeNS
focus
blur
scrollIntoView
scrollIntoViewIfNeeded
scrollByLines
scrollByPages
getElementsByClassName
querySelector
querySelectorAll
webkitMatchesSelector
getClientRects
getBoundingClientRect
setAttributeNode
removeAttributeNode
setAttributeNodeNS
webkitRequestFullScreen
insertBefore
replaceChild
removeChild
appendChild
hasChildNodes
cloneNode
normalize
isSupported
hasAttributes
lookupPrefix
isDefaultNamespace
lookupNamespaceURI
addEventListener
removeEventListener
isSameNode
isEqualNode
compareDocumentPosition
contains
dispatchEvent
手伝って頂けますか?
@Edit javascript でこれを見つけました: Trigger a button click from a non-button element しかし、アプリでは使用できません。