0

こんばんは、巨大な脳のおならのあるピクルスの少しで、何かに少し助けを使うことができます。そこで、Seleniumを使用してWebページを開き、ログインし、いくつかの処理を実行してから、フォームを送信してサイトからログオフするこのC#コンソールアプリを作成しました。これをforループで100回実行します。ごくまれに、ページが十分な速度で読み込まれなかったなどの理由で、一時停止して例外がスローされることがあります。try / catchを使用するのは良いことだと思いましたが、catchが例外をキャッチすると一度だけですが、オンになっているループ番号をやり直して続行したいと思います。たとえば、100の反復66を実行していて、例外がスローされた場合、ページが十分に速く読み込まれなかったか、そのリンクのページにエラーが発生した場合、それをキャッチしてログに記録し、で再起動する必要があります。再び66番。

using System;
using System.Collections.Generic;
using System.Text;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;
using System.Threading;
using System.IO;

namespace SeleniumTest
{
class Program
{
    static void Main(string[] args)
    {
            for (Int64 i = 1; i < 100; i++)
            {
                DateTime time;
                time = DateTime.Now;
                StreamWriter tw = new StreamWriter(@"C:\folder\file.txt", true);
                IWebDriver driver = new FirefoxDriver();
                tw.WriteLine("Staring test," + time);
                driver.Navigate().GoToUrl("http://site.com");
                driver.FindElement(By.Name("username")).Clear();
                driver.FindElement(By.Name("username")).SendKeys("username");
                driver.FindElement(By.Name("password")).Clear();
                driver.FindElement(By.Name("password")).SendKeys("password");
                driver.FindElement(By.CssSelector("input.ui-standard-button")).Click();
                driver.FindElement(By.LinkText("page")).Click();
                driver.FindElement(By.LinkText("page")).Click();
                Thread.Sleep(5000);
                //Do awesome stuff
                DateTime time1;
                time1 = DateTime.Now;
                driver.FindElement(By.CssSelector("div.Parameters")).Click();
                driver.FindElement(By.Name("submit")).Click();
                driver.FindElement(By.LinkText("Logoff")).Click();
                driver.Quit();
                tw.WriteLine("Stopping Test Successfully," + time1);
                tw.Flush();
                tw.Close();
                Thread.Sleep(10000);
            }
        }
    }
}


using System;
using System.Collections.Generic;
using System.Text;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;
using System.Threading;
using System.IO;

namespace SeleniumTest
{
class Program
{
    static void Main(string[] args)
    {
         try
           {
            for (Int64 i = 1; i < 100; i++)
            {
                DateTime time;
                time = DateTime.Now;
                StreamWriter tw = new StreamWriter(@"C:\folder\file.txt", true);
                IWebDriver driver = new FirefoxDriver();
                tw.WriteLine("Staring test," + time);
                driver.Navigate().GoToUrl("http://site.com");
                driver.FindElement(By.Name("username")).Clear();
                driver.FindElement(By.Name("username")).SendKeys("username");
                driver.FindElement(By.Name("password")).Clear();
                driver.FindElement(By.Name("password")).SendKeys("password");
                driver.FindElement(By.CssSelector("input.ui-standard-button")).Click();
                driver.FindElement(By.LinkText("page")).Click();
                driver.FindElement(By.LinkText("page")).Click();
                Thread.Sleep(5000);
                //Do awesome stuff
                DateTime time1;
                time1 = DateTime.Now;
                driver.FindElement(By.CssSelector("div.Parameters")).Click();
                driver.FindElement(By.Name("submit")).Click();
                driver.FindElement(By.LinkText("Logoff")).Click();
                driver.Quit();
                tw.WriteLine("Stopping Test Successfully," + time1);
                tw.Flush();
                tw.Close();
                Thread.Sleep(10000);
            }
        }
         catch(Exception e)
        {
            StreamWriter tw = new StreamWriter(@"C:\folder\file.txt", true);
            tw.WriteLine("Problem happened.  Restarting test.  Exception is :" + e);
            //Line of code to restart test at number 66 which I don't know
        }
    }
  }
}

//私が知らない66番でテストを再開するコードの行は、私の知識が終わる場所であり、うまくいけば他の誰かがいる場所です。あなたが与えることができるどんなガイダンスも素晴らしくてありがたいです。

4

3 に答える 3

1

例外が発生したときにカウンターをデクリメントすると、それが実行されます。

for (Int64 i = 1; i < 100; i++) {
    try {
        //main code here
    } catch (Exception ex) {
        //logging here
        i--;
    }
}
于 2013-02-22T01:17:41.377 に答える
1

なぜ失敗するのかを理解しようとしますが、それがオプションでない場合は、trycatchを使用してwhileループに変換します

    int i = 100;
    while(i > 0)
    {
      try
     {
     //Do your logic here 
       i--
     }
      catch
     {
         //Log failure
      }//Don't decrement in case of failure
    }
于 2013-02-22T01:19:10.550 に答える
0
for (Int64 i = 1; i < 100; ++i)
{
  for (;;)
  {
     try
     {
       //code here
       break;
     }
     catch (Exception exc)
     {
       //log error
     }
  }
}
于 2013-02-22T01:31:35.313 に答える