私はchrome拡張機能の書き方を学んでおり、javascriptはかなり初めてです。
ここにいくつかのhtmlがあります:
<div class="button data" style="">
<a class="button1 whiteColor" href="http://link1.com">VIEW This</a>
<a class="button2 redColor" href="http://link2.com">VIEW That</a>
</div>
私がやりたいのは、javascriptを使用してbutton2をクリックしてlink2.comを開くことです。
私は以下を使用していますが、機能していません:/
document.getElementByClassName("button2 redColor").click();
どんな助けでもいただければ幸いです!
document.getElementsByClassName("button2 redColor")[0].click();
GetElementsByClassNameは配列を返すため、インデックスを選択する必要があります