自分のページにハイパーリンクがあります。テスト目的で、ハイパーリンクのクリックを自動化しようとしています。 JavaScriptを使用してハイパーリンクを50回クリックするのをシミュレートする方法はありますか?
<a href="#" target="_blank" onclick="javascript:Test("Test");">MSDN</a>
私はJavaScriptからonClickイベントトリガーを探しています。
HTML要素をシングルクリックする:単にelement.click()
を実行します。 ほとんどの主要なブラウザはこれをサポートしています 。
クリックを複数回繰り返すには:要素にIDを追加して一意に選択します。
<a href="#" target="_blank" id="my-link" onclick="javascript:Test('Test');">Google Chrome</a>
そして、forループを介してJavaScriptコードの.click()
メソッドを呼び出します。
var link = document.getElementById('my-link');
for(var i = 0; i < 50; i++)
link.click();
これが私が使うものです: http://jsfiddle.net/mendesjuan/rHMCy/4/
IE 9以降で動作するように更新
/**
* Fire an event handler to the specified node. Event handlers can detect that the event was fired programatically
* by testing for a 'synthetic=true' property on the event object
* @param {HTMLNode} node The node to fire the event handler on.
* @param {String} eventName The name of the event without the "on" (e.g., "focus")
*/
function fireEvent(node, eventName) {
// Make sure we use the ownerDocument from the provided node to avoid cross-window problems
var doc;
if (node.ownerDocument) {
doc = node.ownerDocument;
} else if (node.nodeType == 9){
// the node may be the document itself, nodeType 9 = DOCUMENT_NODE
doc = node;
} else {
throw new Error("Invalid node passed to fireEvent: " + node.id);
}
if (node.dispatchEvent) {
// Gecko-style approach (now the standard) takes more work
var eventClass = "";
// Different events have different event classes.
// If this switch statement can't map an eventName to an eventClass,
// the event firing is going to fail.
switch (eventName) {
case "click": // Dispatching of 'click' appears to not work correctly in Safari. Use 'mousedown' or 'mouseup' instead.
case "mousedown":
case "mouseup":
eventClass = "MouseEvents";
break;
case "focus":
case "change":
case "blur":
case "select":
eventClass = "HTMLEvents";
break;
default:
throw "fireEvent: Couldn't find an event class for event '" + eventName + "'.";
break;
}
var event = doc.createEvent(eventClass);
event.initEvent(eventName, true, true); // All events created as bubbling and cancelable.
event.synthetic = true; // allow detection of synthetic events
// The second parameter says go ahead with the default action
node.dispatchEvent(event, true);
} else if (node.fireEvent) {
// IE-old school style, you can drop this if you don't need to support IE8 and lower
var event = doc.createEventObject();
event.synthetic = true; // allow detection of synthetic events
node.fireEvent("on" + eventName, event);
}
};
fireEvent(inputField, 'change');
を呼び出しても、実際に入力フィールドが変更されるわけではありません。 changeイベントを発生させるための典型的なユースケースは、プログラムでフィールドを設定し、input.value="Something"
を呼び出してもchangeイベントをトリガーしないので、イベントハンドラを呼び出したい場合です。
何
l.onclick();
これは、onclick
のl
関数を正確に呼び出すことです。つまり、l.onclick = myFunction;
を使用して関数を設定した場合です。 l.onclick
を設定していなければ、何もしません。対照的に、
l.click();
l.addEventHandler('click', myFunction);
で追加されたか、HTMLであるかその他の方法で追加されたかにかかわらず、クリックをシミュレートし、すべてのイベントハンドラを起動します。
私は非常に多くの不正確なまたは非公開の部分的適用性があることを非常に恥じています。
これを行う最も簡単な方法は、コンソールを使用してChromeまたはOpera(この例ではChromeを使用します)を使用することです。次のコードをコンソールに入力します(通常は1行)。
var l = document.getElementById('testLink');
for(var i=0; i<5; i++){
l.click();
}
これにより必要な結果が生成されます
.click()
はAndroidでは動作しません( mozillaドキュメント 、モバイルセクションを見てください)。このメソッドでクリックイベントを発生させることができます:
function fireClick(node){
if (document.createEvent) {
var evt = document.createEvent('MouseEvents');
evt.initEvent('click', true, false);
node.dispatchEvent(evt);
} else if (document.createEventObject) {
node.fireEvent('onclick') ;
} else if (typeof node.onclick == 'function') {
node.onclick();
}
}
この投稿から
テストフレームワークを使う
これは役に立つかもしれません - http://seleniumhq.org/ - SeleniumはWebアプリケーション自動テストシステムです。
Firefoxプラグイン Selenium IDEを使ってテストを作成できます
手動によるイベントの発生
正しい方法で手動でイベントを発生させるには、ブラウザごとに異なるメソッドを使用する必要があります - el.dispatchEvent
またはel.fireEvent
のいずれかです。ここでel
はAnchor要素になります。どちらもEventオブジェクトを渡して渡す必要があると思います。
完全に正しいわけではありませんが、手っ取り早い方法はこれに代わるものです。
var el = document.getElementById('anchorelementid');
el.onclick(); // Not entirely correct because your event handler will be called
// without an Event object parameter.
IE9 +
function triggerEvent(el, type){
var e = document.createEvent('HTMLEvents');
e.initEvent(type, false, true);
el.dispatchEvent(e);
}
使用例
var el = document.querySelector('input[type="text"]');
triggerEvent(el, 'mousedown');
出典: https://plainjs.com/javascript/events/trigger-an-event-11/
公正警告:
element.onclick()
は期待どおりに動作しません。これはonclick="" attribute
内のコードを実行するだけですが、デフォルトの動作を引き起こすことはありません。
onclick
カスタム関数が正常に動作していても、ラジオボタンがチェックされていないという同様の問題がありました。それを設定するためにradio.checked = "true";
を追加しなければなりませんでした。おそらく同じことが他の要素にも言えます(a.onclick()
の後にはwindow.location.href = "url";
もあるはずです)