Giter Club home page Giter Club logo

webtestapplication's Introduction

WebtestApplication

WebtestApplication is the web-based application that's used to simplify Canoo Webtest scripts creation and execution progress.

Canoo Webtest is a great automation test tool, but it's not friendly, espescially with Testers or QAs who have none or less technical skill. WebtestApplication provide an User Interface for peoppe who works with Canoo, to manage test scripts and execute them.

WebtestApplication has a standalone version which contains apache-tomcat-7.0.55, hsqldb-2.3.2, webtest-3.0.1826. Just double click at start.bat or start.sh and your application is up.

Main features

  • Support scheduling execution (with Quazrt cron expression) for entire project or particular scripts.
  • Support JIRA API connection
  • Execution logs and Webtest results are all stored so you can refer back to execution history anytime.
  • Easy to install by using standalone version.

Hints

  • Use Share Scripts as much as possible, it will help you to simplify your main script a lot.
  • Instead of writing <sql class="..." driver="...">, you can just make it simple <sql>
  • To assign a value that fetch from database by using <sql>, please use this syntax <sql>SELECT 'a_variable' || field FROM table WHERE id=1</sql>. From now on you can access to ${a_variable} anytime.

Screenshots

configuration new project new script edit script script execution

Troubleshooting

Could not find artifact com.atlassian.jira:jira-rest-java-client:jar:1.0

WebtestApplication supports Jira API connection, however the library is not available at default Maven repositoty, so you will have to add it manually into your maven config ~/.m2/settings.xml

<profiles>
  <profile>
    <id>activeProfile</id>
    <repositories>
      <repository>
        <id>atlassian-public</id>
        <url>https://m2proxy.atlassian.com/repository/public</url>
        <snapshots>
          <enabled>true</enabled>
          <updatePolicy>daily</updatePolicy>
          <checksumPolicy>warn</checksumPolicy>
        </snapshots>
        <releases>
          <enabled>true</enabled>
          <checksumPolicy>warn</checksumPolicy>
        </releases>
      </repository>
    </repositories>
    <pluginRepositories>
      <pluginRepository>
        <id>atlassian-public</id>
        <url>https://m2proxy.atlassian.com/repository/public</url>
        <releases>
        <enabled>true</enabled>
        <checksumPolicy>warn</checksumPolicy>
        </releases>
          <snapshots>
            <checksumPolicy>warn</checksumPolicy>
          </snapshots>
      </pluginRepository>
    </pluginRepositories>
  </profile>
</profiles>
<activeProfiles>
  <activeProfile>activeProfile</activeProfile>
</activeProfiles>

webtestapplication's People

Contributors

pltchuong avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.