菜鸟教程小白 发表于 2022-12-12 14:20:21

ios - 使用仪器自动化 ui 测试从 TableView 中删除项目


                                            <p><p>我正在尝试使用仪器自动化 UI 测试从“食谱”应用程序的列表中删除该项目。我记录了一个项目的删除,我用其他名称更改了相同的名称,但它不起作用请帮帮我。</p>

<p>这是我的代码</p>

<pre><code>var target = UIATarget.localTarget();

target.frontMostApp().navigationBar().leftButton().tap();

target.frontMostApp().mainWindow().tableViews()[&#34;Empty list&#34;].cells()[&#34; &#34;].switches()[&#34;Delete MAggi &#34;].setValue(&lt;value&gt;);

target.frontMostApp().mainWindow().tableViews()[&#34;Empty list&#34;].cells()[&#34; &#34;].buttons()[&#34;Confirm Deletion for MAggi &#34;].tap();

target.frontMostApp().navigationBar().leftButton().tap();
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>好吧,假设您在表格 View 中有一个带有名为“MAggi”的配方的单元格,那么以下应该可以工作:</p>

<pre><code>var target = UIATarget.localTarget();

target.frontMostApp().navigationBar().leftButton().tap();

target.frontMostApp().mainWindow().tableViews()[&#34;Empty list&#34;].cells()[&#34;MAggi&#34;].switches()[&#34;Delete MAggi&#34;].tap();

target.frontMostApp().mainWindow().tableViews()[&#34;Empty list&#34;].cells()[&#34;MAggi&#34;].buttons()[&#34;Delete&#34;].tap();

target.frontMostApp().navigationBar().leftButton().tap();
</code></pre>

<p>我没有尝试<code>setValue</code>,而是<code>tap()</code>“删除MAggi”按钮似乎更清楚。此外,您需要确保在 <code>.tableViews()</code></p> 之后的方括号中指定正确的表名</p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用仪器自动化 ui 测试从 TableView 中删除项目,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18655055/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18655055/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用仪器自动化 ui 测试从 TableView 中删除项目