2017-06-21 183 views
2

我有一個問題如下。我使用CefSharp離線進行網頁自動化,如下所示(我只打開一個頁面): 1.打開頁面並等待直至它呈現*。 2.使用EvaluateScriptAsync我把價值輸入表單,然後用相同的方法,我點擊網頁上的按鈕。 3.然後在這個網頁上有一些JS檢查結果並顯示一條消息。 4.當顯示信息時,我做了一個截圖。 **CefSharp offscreen - 等待頁面渲染

但是,我有兩個問題: *我的sulution必須是Internet速度證明。並且正如我使用BrowserLoadingStateChanged事件和IsLoading方法,即使事件觸發網頁沒有完全加載 - 當我啓動EavluateScriptAsync方法時,由於頁面沒有完全加載,返回錯誤。當然,我可以像ThreadSleep這樣的東西,但它並不總是工作 - 它強烈依賴於你的互聯網速度。

**當我嘗試製作屏幕截圖時,它並不總是包含JS顯示的結果消息 - 有時會出現加載圈而不是消息。在這裏我可以再次使用THreadSleep,但它並不總是有效。

你有什麼想法嗎?提前致謝。

private static void BrowserLoadingStateChanged(object sender, LoadingStateChangedEventArgs e) 
     { 
      // Check to see if loading is complete - this event is called twice, one when loading starts 
      // second time when it's finished 
      // (rather than an iframe within the main frame). 
      if (!e.IsLoading) 
      { 
       // Remove the load event handler, because we only want one snapshot of the initial page. 
       browser.LoadingStateChanged -= BrowserLoadingStateChanged; 

       Thread.Sleep(1800); // e. g. but it isn't a solution in fact 

       var scriptTask = browser.EvaluateScriptAsync("document.getElementById('b-7').value = 'something'"); 



       scriptTask = browser.EvaluateScriptAsync("document.getElementById('b-8').click()"); 

       //scriptTask.Wait(); 

       if (browser.IsLoading == false) 
       { 
        scriptTask.ContinueWith(t => 
        { 

         //Give the browser a little time to render 
         //Thread.Sleep(500); 
         Thread.Sleep(500); // still not a solution 

         // Wait for the screenshot to be taken. 
         var task = browser.ScreenshotAsync(); 
         task.ContinueWith(x => 
         { 
          // Make a file to save it to (e.g. C:\Users\jan\Desktop\CefSharp screenshot.png) 
          var screenshotPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "CefSharp screenshot.png"); 

          Console.WriteLine(); 
          Console.WriteLine("Screenshot ready. Saving to {0}", screenshotPath); 

          // Save the Bitmap to the path. 
          // The image type is auto-detected via the ".png" extension. 
          task.Result.Save(screenshotPath); 

          // We no longer need the Bitmap. 
          // Dispose it to avoid keeping the memory alive. Especially important in 32-bit applications. 
          task.Result.Dispose(); 

          Console.WriteLine("Screenshot saved. Launching your default image viewer..."); 

          // Tell Windows to launch the saved image. 
          Process.Start(screenshotPath); 

          Console.WriteLine("Image viewer launched. Press any key to exit."); 
         }, TaskScheduler.Default); 
        }); 
       } 


      } 
     } 

回答

0

好吧,所以在我的情況下,最好的解決方案是使用JavaScript來檢查id是否存在元素。如果是,那麼該頁面被加載。

+0

已加載,但可能仍未呈現。 – AgentFire

+0

真 - 加載但可能不會呈現,但仍然基於它加載的信息,並閱讀一些其他論壇我已經結束瞭解決方案使用線程睡眠200和在不同的硬件頁面上的所有測試中呈現。即使在離線的CefSharp演示中,也有建議使用線程睡眠來等待頁面呈現。 – Mikisz

+0

如果某個進程將使用所有CPU,該怎麼辦?可能有一種方法可以檢查Chrome的渲染應用/處理器/ therad是否已經變得閒置? – AgentFire