12
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.

Testcafeという自動テストツールを使ってみる

Posted at

Testcafeとは、オープンソースの自動テストツールです。
Selenium一択だと思っていたのですが、試してみたいと思います。

調べれば結構ブラウザテストの選択肢があるんですねー   

Testcafeはこちらです
Webサイト: https://devexpress.github.io/testcafe/
Github: https://github.com/DevExpress/testcafe

インストール

クラウド上で実行してみる

GCPでインスタンスを作成、CentOS7を用意しました。

TestCafeまで一発でインストールするスクリプトを置いておきます。
(テスト用の画面を出すためTestCafe以外も入ってますが)

installscript.sh
sudo yum -y update
sudo yum install -y httpd httpd-devel wget git zip unzip
sudo yum install -y php php-devel
sudo yum install -y nodejs npm
cat << EOF | sudo tee /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
EOF
sudo yum install -y google-chrome-stable
sudo npm install -g testcafe
installscript.shというファイルを作成し、上記を書き込み実行する
$ sudo sh installscript.sh

Githubにあるとおり動かしてみる。

このページを叩くことになるらしい。
http://devexpress.github.io/testcafe/example/

example.png

サンプルコードを走らせてみる。

エラーが出た。

errorMessage

ERROR Was unable to open the browser "chrome:" due to error.
Error: Unable to run the browser. The browser path or command template is not specified.
    at checkBrowserPath$ (/usr/lib/node_modules/testcafe/node_modules/testcafe-browser-tools/lib/api/open.js:47:23)
    at tryCatch (/usr/lib/node_modules/testcafe/node_modules/testcafe-browser-tools/node_modules/babel-runtime/rege
nerator/runtime.js:72:40)

Firefoxを入れてみる。 そして実行

errorMessage2
$ testcafe firefox testcafe.ts 
ERROR Unable to establish one or more of the specified browser connections. This can be caused by network issues or
 remote device failure.

単に webブラウザがあるだけじゃ実行にならないみたいですね。
一発スクリプト内ではChromeを入れているのですが、ChromeではヘッドレスモードなるGUIデスクトップ環境がなくても動くモードがあります。
https://developers.google.com/web/updates/2017/04/headless-chrome?hl=ja

$ testcafe "chrome:headless" test.ts 

 Running tests in:
 - HeadlessChrome 0.0.0 / Linux 0.0.0

 Getting Started
 ✓ My first test


 1 passed (4s)

テストできたようです。ちょっとわかりにくいところもあるので、デスクトップ環境でもテストしてみます。

VM上で実行してみる

久しぶりにVirtual Machineをローカルで立ち上げてみます。

久しぶりのFedora。
ではでは、同じようにして実行!
example.png

  

え、・・・

・ ・ ・ 早すぎてよくわからん。

動画で撮影したものをキャプチャして貼り付けてみます。

・クルクルが出ます。
testcafe.png

・画面表示されたかと思ったら一瞬でことが運びます。
dekai.png

・入力完了てなもんでしょうか。
nanasi.png

テスト用のスクリプトと同じ文言になったということでプログラム終了。ですね。

test.ts
.expect(Selector('#article-header').innerText).eql('Thank you, John Smith!');

なかなか簡単にテストを実行できました。
これであれば、Robotic Process Automation など自動化もカバーできるかも?

12
5
1

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
12
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?