>自動化Internet Explorer網站刷新C#
>本文展示了使用C#編程刷新Internet Explorer(IE)網頁的兩種方法。 在各種情況下,例如測試或數據刮擦。
第一種方法利用了類,這是一種模擬鍵盤輸入的簡單方法。 此方法發送F5鍵,這是用於刷新網頁的標準鍵盤快捷鍵。 SendKeys
>
<code class="language-csharp">// Retrieve all running IE processes Process[] processes = Process.GetProcessesByName("iexplore"); foreach (Process proc in processes) { // Bring the IE window to the foreground SetForegroundWindow(proc.MainWindowHandle); // Simulate pressing the F5 key SendKeys.SendWait("{F5}"); }</code>
api,直接向IE窗口發送鍵按消息。此方法避免了與PostMessage
>的一些潛在延遲
SendKeys
<code class="language-csharp">const UInt32 WM_KEYDOWN = 0x0100; const int VK_F5 = 0x74; // Import the required Windows API function [DllImport("user32.dll")] static extern bool PostMessage(IntPtr hWnd, UInt32 Msg, int wParam, int lParam); // Iterate through running IE processes and send the F5 keydown message foreach (Process proc in processes) PostMessage(proc.MainWindowHandle, WM_KEYDOWN, VK_F5, 0);</code>
以上是如何使用C#編程刷新Internet Explorer網站?的詳細內容。更多資訊請關注PHP中文網其他相關文章!