selenium webdriver - Getting Fatal error during transformation Java.net.connectException connection timed out:connect .While executing testng xslt report through ant -


<target name="testng-xslt-report">     <delete dir="${basedir}/testng-xslt">     </delete>     <mkdir dir="${basedir}/testng-xslt">     </mkdir>     <xslt in="${basedir}/testingtestng.xml" style="${basedir}/testng-results.xsl" out="${basedir}/testng-xslt/index.html" classpathref="testingtestng.classpath" processor="saxonliaison" >         <param expression="${basedir}/testng-xslt/" name="testngxslt.outputdir" />         <param expression="true" name="testngxslt.sorttestcaselinks" />         <param expression="fail,skip,pass,conf,by_class" name="testngxslt.testdetailsfilter" />         <param expression="true" name="testngxslt.showruntimetotals" />                                  </xslt> </target> 

this build.xml. have saxon-8.7.jar , saxonliaison.jar files having specified path. have jdk1.7/jre1.7 in machine, , using ant-1.9.1 version. can 1 suggest me how resolve issue? in advance.


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -