Clear()方法不适用于密码字段的appium

时间:2017-04-13 10:41:27

标签: selenium appium

我正在处理appium并在清除密码字段时遇到问题。使用clear()方法实现相同,实际上使用相同的方法来清除用户名及其工作正常。

private void tabControl_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    if (e.OriginalSource == this.tabControl)
    {
        if (this.tabControl.SelectedIndex == 1)
        {
            TabItem ti = tabControl.SelectedItem as TabItem;
            Categories c = ti.Content as Categories;
            if (c != null)
            {
                c.GetCats();
            }
        }
    }
}

1 个答案:

答案 0 :(得分:0)

使用以下代码

driver.findElement(By.id("com.example.jiteshmohite.ycce:id/password")).clear();

替换

com.example.jiteshmohite.ycce

。通过

您的包裹名称。

希望这些可以帮助你。