Misplaced Pages

Galen Framework

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
This article is an orphan, as no other articles link to it. Please introduce links to this page from related articles; try the Find link tool for suggestions. (September 2016)
This article is written like a manual or guide. Please help rewrite this article and remove advice or instruction. (March 2023)
Galen Framework
Original author(s)Ivan Shubin
Initial release2013 (2013)
Stable release2.4.4 / March 15, 2019; 5 years ago (2019-03-15)
Repository
Written inJava
Operating systemCross-platform
Available inEnglish
TypeTest automation
LicenseApache License v2.0
Websitegalenframework.com

Galen Framework is an open source layout and functional testing framework for websites, written in Java, which allows testing the look and feel of responsive websites. It has its own special language Galen Specs for describing the positioning and alignment of elements on a Web page. It is based on Selenium and could be executed via Selenium Grid for cross-browser testing

Main features

  • Testing location of elements on page
  • Image comparison for selected area
  • Functional testing
  • Applying TDD approach in Web development

Galen Specs Language

Galen Specs language consists of the following entities:

  • Page object locator definitions
  • Tagged sections
  • Test objects
  • Test specs
# Declaring objects
@objects
    header              id header
        icon            css img.icon
        text            xpath //h1
# Declaring a section
= Header = 
    @on *
        header:
            inside screen 0px top left right
            height ~ 70px
        header.icon:
            width 34px
            height 34px
            centered vertically inside header
            inside header 7 to 10px left
    @on desktop
        header.text:
            centered vertically inside header
            right of header.icon 5 to 15px
    @on mobile
        header.text:
            absent

References

  1. "Releases ยท Galenframework/galen". github.com. Retrieved 2021-04-07.
  2. "Cross-Browser Layout Testing With Galen Framework And Sauce Labs". SauceLabs. Retrieved January 8, 2015.
  3. "Visual Test-Driven Development For Responsive Interface Design". Smashing Magazine. 7 April 2015. Retrieved April 7, 2015.

External links

Categories: