Skip to main content

An open billet doux to beloved manager

Dear manager,

I never imagined that I would ever write an open love letter to you but having worked with you for so long I am drowning in the sea of love and can not help but let the world know of my feelings for you. Since you like the bullet points I am following the same. (Sorry, could not do Microsoft excel for this. Please bear with me for not letting you create pivot table this time). Here I go -
  • Some time quick and dirty is good. We should have followed it in stand up meetings at least! Those meeting which soon became Sitting Meetings and later Sleeping Meeting.
  • Forcing me to find significant improvement areas in project every fortnight (sigh). Dear, if there were possibilities to do it so frequently then there must have been some thing badly wrong with project.
  • You wanted me to test 24/7. Your Keep Testing arguments are always roaming on my mind. And if that was not enough you asked me to write that stupid certificate. I wish I had done that as there are enough foolish companies which consider testing certificate no less than bible. And I would have broken the shackles of this relation.
  • You asked me for test status every half an hour. I understand your feelings for me but some times we need to be more patient with things.
  • Forcing me to wear formals, no round neck t-shirt. Despite I work I never had the feeling of having come out of high school. At-least leave these jobs to HR.
  •  Keeping tabs on when I come to office but being happily unaware of the time I step out of office.
  • Filling appraisal form every three month!!! It used to be yearly, then became half yearly and then quarterly. I am afraid it would soon become monthly and then daily :-o
  • Feeling proud in making me work every weekend. Remember how you were chastised by client when you told her arrogantly that team worked on weekends and she told you to be ashamed of keeping us away from family.
  • You expect me to wish you every time we come across. Don't you think such expectation of Public Display of Single Sided Affection is too much to expect.
  • Making us follow what others are doing. They are doing automation, we should also do, they are doing performance testing, we should also. Sincerely, this life is not enough to fathom your Love Experiments.
Dear manager, I don't have enough words to express my feelings for you. Someone rightly said - employee does not leave company they leave manager. I think I would give it a pause and leave rest for another open love letter.

Your beloved 
Test Engineer

n.b. According to one scientific study, Indian IT service industry spends zillions of $$$ on reporting managers whose job is to just assign work and ask status report.

Comments

Popular posts from this blog

Using xPath to reach parent of an element

Note: If you are new to java and selenium then start with selenium java training videos .   I prefer css locator over xPath but there are times when css locators don't fit requirement. One such requirement is when you want to navigate to parent element of an element and may be parent of parent and even more. Unfortunately css locators don't provide any mechanism to navigate to parent of an element. See this for more. Of late I came across a scenario when I wanted to click on a link depending upon the text in a text box. Herein parent of text box and parent of link were at the same location. More over there could have been many such combinations in application. Fortunately I just need to pick first such instance and Web Driver any way considers only first instance when multiple locators are found matching an element. Element in question is in following html - Here I need to click on highlighted anchor on the basis of input element (which is also hig...

Selenium Tutorial: Ant Build for Selenium Java project

Ant is a build tool which could be used to have your tests running either from command line or from Hudson CI tool. There is detailed documentation available for ant here but probably you need to know only a little part of it for you selenium tests. The essentials which are needed to know are: Project Target (ant execution point and collection of tasks) Tasks (could be as simple as compilation) And there would usually be following targets for Selenium tools - setClassPath - so that ant knows where you jar files are loadTestNG - so that you could use testng task in ant and use it to execute testng tests from ant init - created the build file clean - delete the build file compile - compiles the selenium tests run - executes the selenium tests Here is my project set up for ant -

Should selenium tests be always independent? The endless debate !!

Though unit tests have always recommended to be independent of each other, advent of selenium+TestNG has given birth to dependent integration/end to end tests. TestNG Author Cédric Beust had written about it few years ago. When I had begun writing selenium tests I used to launch browser once in one test class and test methods were usually dependent on one another. Hence 2nd test method would begin test run on same browser + application state where 1st test method stopped. Launching just one browser for five or more test methods in a class is big time saving is not it? Well not really, for the reasons I am going to describe in this post. Since then I have moved on to launching browser per test method but yet give in “charm” of dependent test methods at times. to So here are the few pros and cons for dependent tests and - Pros - Similar steps of execution don’t have to be repeated in multiple tests when steps constitutes a test method in themselves If login fails then...