To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Gauge (software)

From Wikipedia, the free encyclopedia

Gauge
Developer(s)ThoughtWorks
Stable release
1.5.6[1] Edit this on Wikidata / 27 October 2023; 2 months ago (27 October 2023)
Repository
Written inGo
Operating systemPlatform-independent
TypeTest automation tool
LicenseApache License 2.0
Websitegauge.org Edit this at Wikidata

Gauge is a light weight cross-platform test automation tool. It uses markdown to author test cases and scenarios. Its modular architecture makes it flexible and scalable.

YouTube Encyclopedic

  • 1/3
    Views:
    8 918
    12 548
    961
  • Power BI Custom Visuals - Dial Gauge
  • HG Webinar: Introduction for New HG Users
  • Webinar: Basics of using HomeGauge Inspection Software

Transcription

Markdown

Gauge specifications[2] are written in the business language. For example,

Find movies playing near me
===========================

The System Under Test in this example is a web application to find and book movie tickets

Search for movies
-----------------

* Specify location as "Bangalore"
* Search for movie "Star Wars"
* Verify that "INOX" is playing "Star Wars" at "7:30 pm"

Book movie ticket
-----------------

* Sign up with email address <[email protected]>
* Complete the verification
* Select location as "Bangalore", the movie "Star Wars" and "3" seats
* Confirm and pay
* Verify the "e-ticket" has been sent to the registered email.

This Gauge specification describes a feature of the System Under Test. The scenarios[3] Search for movies and Book movie ticket represent a flow in this specification. Steps[4] are executable parts of a specification.

Test Code

Specifications in Markdown abstracts code behind the steps.

For example, the step Specify location as "Bangalore" implementation in Java would look like

// This Method can be written in any java class as long as it is in classpath.

public class StepImplementation {
   @Step("Specify location as <location>")
   public void helloWorld(String location) {
       // Step implementation
   }
}

Gauge has Support for writing test code in:

The Community contributed language runners are:

Execution

Gauge tests can be executed from the command line[5] or the supported IDEs.[6]

The default command gauge specs run the tests sequentially.

The command gauge -p specs will execute the tests in Parallel.

Reports

Gauge gives comprehensive test reports[7] that provides the required details of a given run.

IDE support

Gauge's IDE support[6] helps to write and maintain the test suite.

References

  1. ^ "Release 1.5.6". October 27, 2023. Retrieved November 18, 2023.
  2. ^ "Long Start – Gauge 0.8.3 documentation". Archived from the original on March 7, 2017. Retrieved April 28, 2017.
  3. ^ "Long Start – Gauge 0.8.3 documentation". Archived from the original on March 7, 2017. Retrieved April 28, 2017.
  4. ^ "Long Start – Gauge 0.8.3 documentation". Archived from the original on March 7, 2017. Retrieved April 28, 2017.
  5. ^ "Using Gauge – Gauge 0.8.3 documentation". Archived from the original on March 6, 2017. Retrieved April 28, 2017.
  6. ^ a b "Using Gauge – Gauge 0.8.3 documentation". Archived from the original on March 6, 2017. Retrieved April 28, 2017.
  7. ^ "Reports – Gauge 0.8.3 documentation". Archived from the original on March 6, 2017. Retrieved April 28, 2017.

External links

This page was last edited on 25 March 2023, at 18:20
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.