No Results Found
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
How Selenium 3.0 has resolved the Firefox compatibility issues?
Meanwhile, A conversation is going on b/w two Automation Engineers somewhere in a parallel universe: Jai: Hey, Could you please check my scripts? Its running fine on Chrome and IE browsers but Firefox. Veeru: Hmm, did you check the Selenium and Firefox version...
D3.js or Chart.js: Detailed comparison
In the world of data - visualization plays a keen role in portraying the data. It enables you to make sense of it faster, and also observe interesting patterns that wouldn’t be apparent from looking only at stats. We were faced with a similar issue - to choose an...
Performance Optimization Techniques
This article is about few performance improvements points which I have been using in my current project and they can be applied generally by you as well. I have written this article in a generic way since the tech stack is different than Rails which is commonly used....
Defect Priority vs Severity – Why to Mark, What to Mark & Who Marks?
Target Audience: All beautiful people on this planet. (it may help us in categorizing and prioritizing our daily life problems and tasks) “Most of us spend too much time on what is urgent and not enough time on what is important.” - Stephen R. Covey Determining the...
Log Rotation and Exception Notifier using Monit
With reference to 'https://linux.die.net/man/1/monit', we can use MONIT for log rotation and as exception notifier from a log file. Steps are as follows : Create new file 'sudo nano /usr/local/bin/rotate' #/bin/bash /bin/mv $1 $1.`date +%y-%m-%d-%H-%M-%S` At the end...