4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ScriptAutoRunnerで遊んでみる(フォームをいろいろ)

Last updated at Posted at 2017-05-09

#ScriptAutoRunnerで遊んでみる
##はじめに
今回は、chromeの拡張機能であるScriptAutoRunnerを使っていろいろ自動化しようってことで書いてみました。
##ダウンロード
ScriptAutoRunnerはここからダウンロードできます。
https://chrome.google.com/webstore/detail/scriptautorunner/gpgjofmpmjjopcogjgdldidobhmjmdbm?hl=ja
##言語
JavaScript
JQuery←使えないサイトもあるかも
##目標
ScriptAutoRunnerを使ってフォームを自動で入力し送信する。
テストサイト
(テストサイト作成してあるのでそこでためそう!!!)
##ScriptAutoRunnerでサイト設定
スクリーンショット 0029-05-09 11.28.43.png
この>部分をクリックします。
スクリーンショット 0029-05-09 11.29.30.png
そして、このTaeget hostnameの部分にサイトのURLのホスト部
(peon-ferret-21210.netlify.com)を入力する。
※httpの部分はいらない!!
http://peon-ferret-21210.netlify.com/index.html
の場合も
peon-ferret-21210.netlify.com
これで、そのスクリプトを実行するサイトを指定します。

これを指定しないと全てのサイトでそのスクリプトが実行されます。

##実際にフォームに値を入れる
言語はJSなので、普通に指定してあげればいいです。
これは1例です。

document.getElementsByName('ra1')[0].click();
document.getElementsByName('ch1')[2].click();

スクリーンショット 0029-05-09 11.34.52.png
##最後にその設定をONにする
最後にコンセントの部分をさしてあげればOKです。
スクリーンショット 0029-05-09 11.35.25.png

##テスト
簡単なテストサイトを作りました。
http://peon-ferret-21210.netlify.com/
このサイトにアクセスして、フォームに値が入力されていたら成功です。

##これってどこで使えるの??
よくアンケートサイトとかありますよね?
そこで使えるかも・・・「悪用厳禁です」

以上です。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?