如果使用unitest,则自动化脚本不会运行

时间:2018-12-11 19:11:52

标签: python-3.x selenium

以下是我的代码,当我单击pydev中的run-> python run时,eclipse在控制台中显示“ terminated”。

<LayoutTemplate>
    <div class="table-responsive">
        <table class="table">
            <thead>
                <tr>
                      <th runat="server" id="customColumn"><asp:LinkButton id="LinkButton10" runat="server" CommandArgument="Custom1" CommandName="Sort">Group ID</asp:LinkButton></th>

1 个答案:

答案 0 :(得分:2)

cleaned_data在每次测试之前执行。在您的setUp类中,您尚未定义任何测试...因此SearchTests将永远不会运行。添加一些测试!

例如:

setUp