スクリプト用に既存のブラウザ ウィンドウを使用するのではなく、別のブラウザ ウィンドウを開く場合があります。たとえば、Silk Central Test Manager から Silk Test Workbench スクリプトを実行する場合には、スクリプトは既存の Silk Central ウィンドウを使用します。Silk Central に戻るには、ユーザーはブラウザ ウィンドウで 戻る をクリックする必要があります。Silk Central から実行するテスト用に別のブラウザ ウィンドウを開くスクリプトを構成すると、この動作を回避できます。
Dim applicationProcess As New Process()applicationProcess は、起動するアプリケーションの名前です。 たとえば、Internet Explorer を起動するには、以下のように入力します。
Dim ieProcess As New Process()
Dim psi As New ProcessStartInfo() psi.FileName = "applicationexecutable.exe"applicationexecutable.exe は、テスト アプリケーションを起動する実行可能ファイルの名前です。 たとえば、Internet Explorer を起動するには、以下のように入力します。
Dim psi As New ProcessStartInfo() psi.FileName = "C:\Program Files\Internet Explorer\iexplore.exe"
psi.Arguments = "http://demo.borland.com/InsuranceWebExtJS/index.jsf"
ieProcess.StartInfo = psi ieProcess.Start()