nightwatch-ui-attributes-validator v2.0.2
Validate UI attributes using NightwatchJS
This package allows you to validate the UI attributes against baseline using NightwatchJS.
What is a baseline?
A baseline is a simple JSON file that will have different elements and their attributes that we you would like to validate. You can create multiple baseline files according to your need.
A typical example of a baseline file
sample1.json
[
{
"tag": "h2",
"selector": "//h2[contains(text(),'HELPING MILLIONS OF SMILES')]",
"text": "HELPING MILLIONS OF SMILES",
"attributes": {
"font-family": "\"Open Sans\", sans-serif",
"font-weight": 800,
"color": "rgb(22, 68, 107)",
"font-size": "48px",
"line-height": "52px",
"letter-spacing": "normal",
"text-transform": "uppercase",
"display": "block"
}
},
{
"tag": "a",
"selector": "//a[@id="tryItOn]",
"text": "Try it On",
"attributes": {
"font-family": "\"Open Sans\", sans-serif",
"font-weight": 800,
"color": "rgb(22, 68, 107)",
"font-size": "24",
"line-height": "32px",
"letter-spacing": "normal",
"text-transform": "lowercase",
}
}
]- Version
1.0.4, supports passing a baseline file with extensionjs.sample2.js
module.exports = [
{
"tag": "span",
"selector": "//div[@class='coh-inline-element navigation-section']/ul/li/span[text()='Products']",
"text": "Products",
"attributes": {
"font-family": "\"Open Sans\", sans-serif",
"font-weight": 600,
"color": "rgb(26, 68, 151)",
"font-size": "18px",
"line-height": "26px",
"letter-spacing": "normal",
"display": "inline-block"
}
}
]- This package identifies elements using either of the 2 approaches
- By passing a unique text
[
{
"tag": "h2",
"text": "HELPING MILLIONS OF SMILES",
"attributes": {
"font-family": "\"Open Sans\", sans-serif",
"font-weight": 800,
}
},
]Note: In the above example HELPING MILLIONS OF SMILES is an unique text on the screen
- By passing the exact xpath of the element
[
{
"tag": "a",
"selector": "//a[@id="tryItOn]",
"text": "Try it On",
"attributes": {
"font-family": "\"Open Sans\", sans-serif",
"font-weight": 800,
}
}
]Note: In the above example, the selector of an element has been defined. Also if both text and selector is provided for an element, preference is given to the selector of the element.
Configuration
- Install the package using command:
npm install nightwatch-UI-atrributes-validator- Add custom command to the configuration of
nightwatch.conf.js. You can refer the link
custom_commands_path: [
'./node_modules/nightwatch-UI-atrributes-validator/commands'
]- Add custom assertion to the configuration of
nightwatch.conf.js. You can refer the link
custom_assertions_path: [
'./node_modules/nightwatch-UI-atrributes-validator/assertions'
]- Lastly pass the path of the baseline folder to the configuration, under the
nightwatch.conf.js
globals: {
baselineDirPath : "./baseline",
}Usage
Types of parameters validateBaseline assertions accepts
| Input types | description |
| :---------- | ----------------------------------------- |
| file | Can pass a js or json file path which resides under baseline folder|
| array | Accepts element attributes in array format|
| object | Accepts element attributes in object format|
Below are few examples:
To use the above, we simply need to use the custom command validateBaseline and it accepts 1 parameter.
1. fileName of the baseline
describe('Verify the UI attributes of homepage', function() {
it('Verify the UI attributes for 414 screen', function(browser) {
browser
.url('https://example.com/')
.assert.validateBaseline("sample1.json") // Or .assert.validateBaseline("sample2.js")
.end();
});
});Here: In the above example sample1.json is file under baseline folder.
2. attributes of the element in Object format
const elementAttributes = {
"tag": "p",
"selector": "//div[@id='block-globalannouncementarea']",
"text": "New! Itch Protect Wash",
"attributes": {
"font-family": "Jost",
"font-weight": 500,
"color": "rgb(255, 255, 255)",
"font-size": "17px",
"line-height": "24px",
"letter-spacing": "normal",
"text-align": "center",
"display": "inline-block"
}
};
describe('Verify the UI attributes of homepage', function() {
it('Verify the UI attributes for 414 screen', function(browser) {
browser
.url('https://example.com/')
.assert.validateBaseline(elementAttributes)
.end();
});
});attributesof the element in anarrayformat
const elementAttributes = [
{
"tag": "p",
"selector": "//div[@id='block-globalannouncementarea']",
"text": "New! Itch Protect Wash",
"attributes": {
"font-family": "Jost",
"font-weight": 500,
"color": "rgb(255, 255, 255)",
"font-size": "17px",
"line-height": "24px",
"letter-spacing": "normal",
"text-align": "center",
"display": "inline-block"
}
},
{
"tag": "p",
"selector": "//div[@id='block-globalannouncementarea']",
"text": "New! Itch Protect Wash",
"attributes": {
"font-family": "Jost",
"font-weight": 500,
"color": "rgb(255, 255, 255)",
"font-size": "17px",
"line-height": "24px",
"letter-spacing": "normal",
"text-align": "center",
"display": "inline-block"
}
}
];
describe('Verify the UI attributes of homepage', function() {
it('Verify the UI attributes for 414 screen', function(browser) {
browser
.url('https://example.com/')
.assert.validateBaseline(elementAttributes)
.end();
});
});Output
You can choose the kind of reports you need, by using nightwatch provided reporters.Here's a for reference.
Note: This package works with NightwatchJS & NightwatchJS with CucumberJS integration too :)