我正在处理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();
}
}
}
}
答案 0 :(得分:0)
使用以下代码
driver.findElement(By.id("com.example.jiteshmohite.ycce:id/password")).clear();
替换
com.example.jiteshmohite.ycce
。通过强>
您的包裹名称。
希望这些可以帮助你。