Skip to content

Instantly share code, notes, and snippets.

@ootaken
ootaken / CalculatorTest.java
Last active April 18, 2017 22:35
Windows Application DriverでWindowsアプリケーションのテストを自動化しよう ref: http://qiita.com/ootaken/items/33099fcbd730e775e4db
//******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
@ootaken
ootaken / file0.sh
Last active April 18, 2017 02:21
キーワード駆動テスト SI-Toolkit for Web Testing のサンプルをEC-CUBEを対象に作ってみました ref: http://qiita.com/ootaken/items/4ca0b095b5e3322c4ed7
git clone https://github.com/ootaken/ec-cube3-on-docker.git
cd ec-cube3-on-docker
docker-compose up
@ootaken
ootaken / file0.txt
Created December 22, 2016 07:50
AWSでNVIDIA DIGITS 4を体験してみる ref: http://qiita.com/ootaken/items/06a014eaaf95b225752b
ota-no-MacBook-Air:~ kenichiro_ota$ tree Samples/
Samples/
├── Catetory1
│   ├── Image1.png
│   ├── Image2.png
│   ├── Image3.png
│   ├── Image4.png
│   ├── Image5.png
│   └── Image6.png
├── Catetory2
@ootaken
ootaken / file0.txt
Last active December 21, 2016 02:45
AppiumでUnityアプリを操作する : Selenium Unity Driver ref: http://qiita.com/ootaken/items/8aeec85a8cfcbeddda58
choco install jdk8 nodejs
@ootaken
ootaken / PtlGebSpec.groovy
Last active February 18, 2016 06:39
Pitalium, Geb, Spockを統合する ref: http://qiita.com/ootaken/items/12226f3c35f465174ddf
package pitalium
import com.htmlhifive.pitalium.core.rules.AssertionView
import com.htmlhifive.pitalium.core.rules.ResultCollector
import com.htmlhifive.pitalium.core.selenium.PtlCapabilities
import com.htmlhifive.pitalium.core.selenium.PtlWebDriver
import com.htmlhifive.pitalium.core.selenium.PtlWebDriverManager
import geb.spock.GebSpec
import org.junit.ClassRule
import org.junit.Rule
@ootaken
ootaken / file0.java
Last active February 13, 2016 10:01
PitaliumとSelenideを統合する ref: http://qiita.com/ootaken/items/51e52e0e61d7f93661a2
package pitalium;
import com.codeborne.selenide.Configuration;
import com.codeborne.selenide.WebDriverRunner;
import com.htmlhifive.pitalium.core.PtlTestBase;
import org.junit.Before;
import org.junit.Test;
import static com.codeborne.selenide.Selenide.open;
@ootaken
ootaken / TestLinkIntegrationTest.java
Last active January 30, 2016 08:40
TestLinkで手動テストと自動テストを統合する : JUnit編 ref: http://qiita.com/ootaken/items/af11c94c6c49bc1a0a4f
import org.junit.Test;
import org.junit.runner.RunWith;
import org.unitils.UnitilsJUnit4TestClassRunner;
import org.unitils.testlink.annotation.TestLink;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;
/**
* Created by kenichiro_ota on 2016/01/28.
@ootaken
ootaken / file0.txt
Created December 23, 2015 02:43
Set-ExecutionPolicy RemoteSignedできない環境なんとかPowerShellスクリプトを実行する ref: http://qiita.com/ootaken/items/496d2230b05500a0e445
type hogehoge.ps1 | powershell -Command -
@ootaken
ootaken / file0.txt
Last active July 22, 2016 09:31
Docker ComposeでJenkinsとSelenium Gridを一気に立ち上げる ref: http://qiita.com/ootaken/items/26d37cb34d3b575277e0
$ git clone https://github.com/ootaken/jenkins-and-selenium-on-docker.git