My cross browser test fails only for opera driver since it is working with all the other drivers (chrome, firefox and ie).
Here is the java code.
System.setProperty("webdriver.opera.driver", "...\\operadriver.exe");
driver = new OperaDriver();
Here is the testng class.
<test name="OperaTestCases">
<parameter name="browser" value="opera"/>
<classes>
<class name="crossBrowser.Test"/>
</classes>
</test>
browser is opening but nothing is happening. and test fails. :)