css-wrangler
v0.12.0
Published
Computed styles scraping and reporting
Downloads
3
Readme
Frozen DOM/Computed Style testing
To help refactor CSS across a large site this will crawl through an original and revised version of the site and show you the difference to the computed styles (the final result of all CSS applied to an element) of all the elements on all of the pages.
The simplest way to use this is to provide:
- Two different URLs to the site you want to check - the original and revised (normally the site hosted on your local dev machine and the live version of the site)
- A number of paths to pages you want the to crawl (i.e. /home/ or /article/)
- A number of selectors for elements on those pages (i.e. #header or .article-heading). This can just be the html element if you don't want to divide up the results
When run the application will generate three files:
- A JSON file containing all the original computed styles scraped
- A JSON file containing all the revised computed styles scraped
- A JSON file containing the difference between the two
The difference can then be viewed through Results/Results.html
Running the Crawler
To run crawler use the following command
node crawler\bin\css-crawler --config your-config-file.js
make sure you have Selenium Driver and its location in your path
The config file is a CommonJS module exporting a variable called crawlerConfig
export const crawlerConfig = {
beforeUrl: "127.0.0.1:8080/a.html",
afterUrl: "127.0.0.1:8080/b.html",
pages: [
{
id: 'home',
name: 'Home page',
path: '/',
elementsToTest: ['h1', '.element-with-class', '#elementWithId']
}
{
id: 'about',
name: 'About page',
path: '/about/',
elementsToTest: ['h1', '.element-with-class', '#elementWithId']
}
],
outputPath: 'c:/crawlerOutput.txt'
};
The pages
object's id
must not contain whitespace or hyphens.
Viewing the results
Open Results/Results.html
and load any JSON file the crawler has produced. If there were any difference you should see a list of each page where differences occurred.
The numbers next to each page show the number of style changes and the number of element/content changes. Potentially there are more style changes within these elements but without something to compare it to the crawler can't tell.
Only gathering styles
To gather styles which will be compared at a later date add this switch:
--getOriginal
It will gather styles using the beforeUrl
from the provided config file.
This can be used locally, before and after you make changes. It can also be used to gather styles as part of continuous integration to gather styles for each build.
Comparing previously gathered styles
You can compare previously gathered styles:
--original my-original-styles.json
This will generate a diff from the original styles in the file and the afterUrl
of the config. You can load this diff
file into the results.html
Roadmap
Short term
- Fix the xpath's missing slash
- Show the number of ignored elements on results page
- Break down ComputedStyleTest.ts into separate concerns
- Open the results page from a command
- Improve logging (Standard log, verbose log, error log and switches)
- Find a cross browser replacement for document.querySelector() without effecting the page so results can be gathered from IE8
- On the results page add a checkbox next to each difference allowing property/value combinations to be ignored for the Original, Comparand or both.
- Replace vanilla webdriver with BrowserTime https://www.npmjs.com/package/browsertime
Medium term
- Allow the gathering of a/b computed styles and the comparision to happen at separate times
- Improve the flexability of Selenium
-- Allow JavaScript features to be tested by describe page 'states' within the config. These would be selenium commands
run before scraping the styles (i.e.
loginButtonElement.click()
oraction.moveToElement(dropDownMenu)
). -- Allow configuration of Selenium from the config and command line. IE, Chrome, Firefox etc. and browser width.
Long term
- Save data to database instead of JSON file
- Make the consumer site faster by lazy loading data from database