まずVS2013 Winforms .net 4.0を使用しています。Visual Studio自動UIテストがハングする
他の可能性を除いて(私の可能性のあるものから)、犯人はMe.close()を特定の形式で表示します。 me.close()メソッドが実行された後、コード化されたUIテストアプリケーションはフリーズしているように見え、押されているボタンやテキストを入力していることについてのフィードバックは表示されません。私がコードを生成するように要求すると、プロセスをあきらめて終了させる前に、1時間も経ちます。私がme.closeなしで同じテストをしようとすると、期待どおりに動作します。誰も自動uiテストでこのバグを修正する方法を知っていますか?そうでない場合は、何か別の提案をお願いしますか?
編集:これは右上のフォームの「X」ボタンを押すだけです。これは非常に奇妙です。
Edit2:私は新鮮なプロジェクトでこれを試しました。確かに私は自動化されたコードを生成することができないように、コード化されたUIテストアプリケーションを「フリーズ」させ、ロードバーにお待ちください。
Edit3:超音波ボタンのinfragisticsクリックハンドラでme.closeを呼び出すことに特有のようです。うわー、ここに例があります。
デザイナー
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class closemepls
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.UltraButton1 = New Infragistics.Win.Misc.UltraButton()
Me.SuspendLayout()
'
'UltraButton1
'
Me.UltraButton1.Location = New System.Drawing.Point(45, 47)
Me.UltraButton1.Name = "UltraButton1"
Me.UltraButton1.Size = New System.Drawing.Size(232, 157)
Me.UltraButton1.TabIndex = 0
Me.UltraButton1.Text = "UltraButton1"
'
'closemepls
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(284, 262)
Me.Controls.Add(Me.UltraButton1)
Me.Name = "closemepls"
Me.Text = "closemepls"
Me.ResumeLayout(False)
End Sub
Friend WithEvents UltraButton1 As Infragistics.Win.Misc.UltraButton
End Class
コード
Public Class closemepls
Private Sub UltraButton1_Click(sender As Object, e As EventArgs) Handles UltraButton1.Click
Me.Close()
End Sub
End Class
私はclosemepls.showdialog()を呼び出し、ボタンをコード化されたUIテストアプリケーションがフリーズをクリックすると! Infragistics FTW。
この結果、1時間後でも完了しません。
再生する最小限の例は? – Evk
@エヴァイク私はあなたが編集したことを警告していますが、私は例を追加しましたが、サードパーティのコントロールを実行する必要があります。 – codemonkeyliketab
'close'メソッドに関する文書はどこにありますか?私のクイックウェブ検索では、http://help.infragistics.com/Help/Doc/WinForms/2011.2/CLR2.0/html/Infragistics2.Win.Misc.v11.2~Infragistics.Win.Misc.UltraButton_members.html 'ultrabutton'クラスですが、そのページには' close'はありません。また、InfragisticsがCoded UIをサポートするレベルは? – AdrianHHH