last test

This commit is contained in:
Samuele E. Locatelli
2019-04-24 15:21:32 +02:00
parent 0c6bdab26d
commit b379e0a104
2 changed files with 14 additions and 20 deletions
+13 -19
View File
@@ -60,28 +60,22 @@ namespace IOB_WIN
// faccio download preliminare pagina
var web = new HtmlWeb();
var htmlDoc = web.Load(baseUri);
if (htmlDoc.DocumentNode != null && htmlDoc.ParseErrors != null && !htmlDoc.ParseErrors.Any())
{
// salvo la pagina completa
lgInfo("--------------------------------------");
lgInfo("Curr ParsedText");
lgInfo("--------------------------------------");
lgInfo(htmlDoc.ParsedText);
lgInfo("");
lgInfo("--------------------------------------");
lgInfo("FULL TEXT");
lgInfo("--------------------------------------");
lgInfo(htmlDoc.Text);
lgInfo("--------------------------------------");
}
else
{
lgInfo("Errore in htmlDoc parse");
}
// salvo la pagina completa
lgInfo("--------------------------------------");
lgInfo("Curr ParsedText");
lgInfo("--------------------------------------");
lgInfo(htmlDoc.ParsedText);
lgInfo("");
lgInfo("--------------------------------------");
lgInfo("FULL TEXT");
lgInfo("--------------------------------------");
lgInfo(htmlDoc.Text);
lgInfo("--------------------------------------");
}
catch (Exception exc)
{
lgError(exc, "Eccezioen durante wpsFullTest");
lgError(exc, "Eccezione durante wpsFullTest");
}
}
}
Vendored
+1 -1
View File
@@ -16,7 +16,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=386']) {
withEnv(['NEXT_BUILD_NUMBER=387']) {
// env.versionNumber = VersionNumber(versionNumberString : '2.3.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '2.3.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'MAPO-IOB-WIN'