Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Last active August 13, 2017 05:20
Show Gist options
  • Save kurudrive/cefc30f9befe91f0b25908fcc3e8cb46 to your computer and use it in GitHub Desktop.
Save kurudrive/cefc30f9befe91f0b25908fcc3e8cb46 to your computer and use it in GitHub Desktop.
billvektor.feature
Feature: BillVektor Features
# 使用できるテストの文書のパターンを見たい場合は以下のコマンド
# vendor/bin/behat -di --lang=en
Scenario: Login as the "administrator" role
# スクリーンサイズ1200×800
Given the screen size is 1200x800
# 管理権限でログイン
When I login as the "administrator" role
####################################################################
# 取引先を登録
####################################################################
# 取引先の新規投稿画面へ移動
When I am on "/wp-admin/post-new.php?post_type=client"
# タイトル欄に「株式会社テスト」を入力
And I fill in "title" with "株式会社テスト"
# 公開ボタンをクリック
And I press "公開"
# 3秒待つ
And I wait for 3 seconds
# スクリーンショットを撮る
Then take a screenshot and save it to "_out/1_1_取引先登録ページ_新規登録.png"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment