# testatoo **Repository Path**: mirrors_andyglick/testatoo ## Basic Information - **Project Name**: testatoo - **Description**: Testatoo is a web user interface DSL testing tool - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README = Testatoo :revdate: 01-07-2017 :download-url: http://repo1.maven.org/maven2/org/testatoo/testatoo/ :noheader: image:https://travis-ci.org/Ovea/testatoo.svg?branch=master["Build Status", link="https://travis-ci.org/Ovea/testatoo"] image:https://badges.gitter.im/Join%20Chat.svg[link="https://gitter.im/Ovea/testatoo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"] https://coveralls.io/github/Ovea/testatoo?branch=master[image:https://coveralls.io/repos/Ovea/testatoo/badge.svg?branch=master&service=github[CoverageStatus]] [.left.text-left] image::https://github.com/Ovea/testatoo/blob/master/src/main/asciidoc/images/logo.jpg[] == Documentation and Samples The documentation is available http://www.testatoo.org/documentation.html[here] Samples are available https://github.com/Ovea/testatoo-sample[here] == Quickstart Get Started in 5 minutes http://www.testatoo.org/get-started.html[here] == Downloading Latest Testatoo version is available on {download-url}[Maven Central] org.testatoo testatoo 2.0.b26 test == Building === Prerequisites ==== Java 1.8+ You need version **1.8** and more of the Java JDK installed $ java -version java version "1.8.0_91" Java(TM) SE Runtime Environment (build 1.8.0_91-b14) Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode) ==== Maven Follow the instructions http://maven.apache.org/download.cgi#Installation["Maven Installation Instructions"] $ mvn --version Apache Maven 3.3.9 Maven home: /usr/share/maven Java version: 1.8.0_91, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_US, platform encoding: UTF-8 OS name: "linux", version: "4.4.0-28-generic", arch: "amd64", family: "unix" === Installation Steps $ cd /wherever $ git clone https://github.com/Ovea/testatoo $ cd testatoo === Install browsers - Install Firefox - Install Chrome - Install Edge / Safari With Selenium 3 now you need to install also the drivers: - https://github.com/mozilla/geckodriver/releases[Firefox Driver] - https://sites.google.com/a/chromium.org/chromedriver/[Chrome Driver] - https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/[Edge Driver] - For Safari it's already included in your Safari in the directory '/usr/bin/safaridriver' If you don't want to install Browser and driver you can use docker images - docker run -d -p 4444:4444 selenium/standalone-firefox:3.0.1-aluminum - docker run -d -p 4444:4444 selenium/standalone-chrome:3.0.1-aluminum In your Terminal $ mvn clean install -Pfirefox // Or -Pchrome or $ mvn clean install -Pchrome -Ddocker=true -Dip=xxx.xxx.xxx.xxx with docker you need to set your host IP (don't use loopback (127.0.0.1) it's not reachable from the docker container) To just build and skip the tests $ mvn package -Dmaven.test.skip=true