熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C#調用QTP自動化對象模型的實例

2022-06-13   來源: .NET編程 

  使用QTP自動化對象模型提供的對象方法和屬性可以編寫腳本來設置QTP運行測試而不需要在QTP的界面上手工進行

  下面是一個簡單的C#調用QuickTest自動化對象模型的例子

  using System

  using SystemCollectionsGeneric

  using SystemComponentModel

  using SystemData

  using SystemDrawing

  using SystemText

  using SystemWindowsForms

  namespace Test

  {

  public partial class Form Form

  {

  public Form()

  {

  InitializeComponent()

  }

  private void button_Click(object sender EventArgs e)

  {

  // 創建QTP應用程序實例

  QuickTestApplication app = new QuickTestApplication()

  // 啟動QTP

  appLaunch()

  // 讓QTP可見

  appVisible =true

  }

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/11620.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.