Posts

Showing posts from April, 2020

Testing Tool: MRI for Web Professionals

Image
You might have heard about other extensions for Chrome/Firefox to Validate the Locators in the HTML Page. Recently, I was trying to validate the locator on IE 11 Browser. Element details are same as in Firefox and Chrome. But want to check other possible selectors for the Element. Found a Bookmarklet Tool for IE Browser developed by Two developers from Western Civilization Pty Ltd. Tool: MRI: test your selectors MRI helps you create the best possible selectors for your CSS. Add MRI to your bookmarks bar, then for any page, click an element, and MRI suggests selectors for that element.  You can also test selectors with it. The Steps are very simple and are detailed in the webpage.   Link:  http://westciv.com/mri/ Once we click on MRI Bookmarklet, Then click on Show All Content. Once we highlight the elements on the webpage, it displays suggested selectors and also, we can evaluate the locators.  Note:  a. I have tried this only on IE Browser and It worked well. b. This tool may not work

Testing Tool: How to Find Image File Details in a Bulk

Image
Finding image details of each image from 500k+ images manually is tedious task. We can get the image file details in a bulk using a software. Software Name: ImageMagick   (https://www.imagemagick.org) Download and Install the software based on operating system. https://www.imagemagick.org/script/download.php  How to Test? Place all Images in a Folder. Then open command line (CMD) and Navigate to the Folder containing the Images. Then enter the following command: magick identify *.jpg > scanjpg12.txt It Displays the results in scanjpg12.txt file.