Skip to main content

Lollipop of US Visa



There is great charm about on-site (read USA) work in employees of Indian IT service industry. This is also seen as great tactic by your employer to keep you engaged with company and not hop job. You are often offered an on-site trip if you are the project savior and decide to quit. And few of you indeed get to go to client place with great pride. But do you get to go on work visa? By and large answer is NO. And probably you don't even know that you are sent to work on illegal visa, famously known as B1 visa. There is nothing illegal about B1 visa per se but this category of visa allows only business meeting or attending seminars. This is why there is initial cap of 3 months to stay. Once it is stamped by your employer that you would travel on-site, this how whole story goes -
  • You are scheduled for an interview with US consulate. Your HR comes to train you on how you should speak about supposed business trip and not utter a word about work
  • You are ecstatic once your visa is approved. More happy as you are entitled to 40$ per day along with your Indian salary
  • You land up in USA and stay for three months and some times work requires you to extend your stay for another 3 months. You complete the job and come back to India. Back in India, you are asked to share you views with rest of team and team assumes that you are the only one who shoulders bigger responsibility and they owe it to you. You see your self as a hero
Now read this -
  • You HR is lying to you and keeping you in dark. You are going to work on B1 visa, at best it can only be called illegal. What you need is L1 or H1 visa. 
  • You don't realize how much a legal worker paid for the same job you are going to do. But any way it's on-site visit, you are the chosen one in team and pride matters along with extra pennies your trip is going to fetch you
  • Working for first 3 months on B1 visa is itself illegal but if that was not enough you are required to work for 3 more months. And if it were not for the limit of 6 months your employer would ask you to stay for even longer and pay you pennies 
You don't have do any research to find truth about these facts. Look how many of your team members have been to US on B1 visa and worked. Where does the problem arise from? Why are we Indians so fascinated with on-site trips? The reason is simple, being triton among minnows gives great sense of self accomplishment. We want to show how superior we are to the team and to the society. After all working in US is considered a royal status in India. Is not it? And don't forget those extra dimes your illegals trip is going to fetch you. You are already paid cents and extra pennies boost your morale immensely.

Now how many of us would accept it if a worker from Pakistan or Sri Lanka comes to India on illegal visa, works and earns money, causes an Indian to lose the job because foreign worker is ready to do the job cheaper than us and eventually goes back to his/her country. Makes you angry? This is exactly what we have doing to native Americans. We go to work on illegal visa, are paid less and deprive American citizens of job.

But it also seems that US companies/authorities are in cahoots with Indian IT companies. They can hunt down Osama in a foreign land but have been unable to detect B1 visa fraud for so long. Though it seems that few cases are finally emerging. Have you heard of Infosys visa fraud issue?

I can never have any thing against working in USA. In fact there are great tech companies and innovations happen in USA than any where else in word. But Indian IT companies have only exploited the huge work force we have here in India. Exploited to the extent that fresh graduates are hired from college but portrayed as experienced engineers. The engineers are paid least and manager enjoy most (I have seen as big team of two engineers with one manager). Sent to work on illegal visa. Can be laid off any time but if you want to leave then you need to comply with notice period. Need to wear formal every single day. Does not matter if you stay in office till 12 am but should be back in office 9am next day. Heavy on processes, 90% of which is sheer overhead. I can keep writing on the nonsense which goes in to Indian IT service industry. But the bigger question is - do we want to shape up such IT industry in India?

Comments

  1. OMG, Tarun, you really have un-earthed something that we all realize sub consciously but ignore it when it comes to earning those "extra pennies". But, Tarun, the problem is as much on the surface as it is down below, like an iceberg. IT employees get lured to US trips not only bcoz of status concerns but
    1. we do need any "extra pennies" that we get. Lets re-face it, we r not a rich country.
    2. we get better working conditions than anytime in India (I have been to US thrice on B1)
    3. we get client-facing experience which, I personally believe, opens up your viewpoint and work style.
    4. we always have an option to "switch" to a US based company to earn exactly "what we deserve".

    ReplyDelete

Post a Comment

No spam only genuine comments :)

Popular posts from this blog

Appium and android mobile app automation

Next appium and Android mobile app automation video tutoria l is live. If you are new to appium then please check - appium-tutorial This video tutorial covers - Start vysor (Just for this session and not mobile automation :)) Start appium and start appium inspector Desired Capabilities platformName - Android deviceName - L2N0219828001013 (as seen on "adb devices") Saved Capability Sets Start Session Scan app elements using appium inspector Get appPackage and appActivity using "APK info" app Install "APK info" app and open app whose appPackage and appActivity are required i.e. calculator Check top section of app icon com.android.calculator2 is app package com.android.calculator2.Calculator is app activity testng.xml file settings for running Android app tests Test details com.seleniumtests.tests.mobile.AndroidAppTest and CalculatorScreen class View beautiful STF test report  

Return only first or last element from webelements collection

Note: If you are new to java and selenium then start with selenium java training videos .     We often come across situation when there are multiple elements on a page and we probably like to exercise only a few of them using selenium webdriver. May be just first and last element. For example on a search result page we may like to click on only first and last link and not all. This is when Iterables API comes handy. (By the way I am assuming that you have already completed watching selenium training videos :)). Once we have collection of web element then we can use Iterables to get only first or last element as following - Consider that we fetch collection of element as - List< WebElement > webElements = getDriver().findElements(By. id ( "htmlID" ));   Now we can get the first web element from this collection as -  WebElement firstElement = Iterables. getFirst (webElements,  getDriver().findElement(By. id ( "defaultElement" )));   Herein second

Using chrome console to test xPath and css selectors

Note: If you are new to java and selenium then start with selenium java training videos .       Since the advent of selenium there have been many plugin to test xPath / css selectors but you don’t need any of them if you have chrome browser. Using Chrome console you can test both xPath and css selectors. Launch website to be tested in chrome browser and hit F-12 and you would see chrome console opened in lower pane of application - Hit escape key and console would open another pane to write element locators - And now you can start writing xPath or css selectors in chrome console and test them - The syntax for writing css id - $$(“ ”) And hit the enter key. If your expression is right then html snippet of the application element corresponding to the css selector would be displayed - If you mouse over the html snippet in chrome console then it would highlight the corresponding element in application - If you want to clean console of previously wri