gpt4 book ai didi

java - 我如何更改 android.widget.CheckedTextView 的检查值

转载 作者:行者123 更新时间:2023-12-01 16:15:46 25 4
gpt4 key购买 nike

我正在尝试使用 Appium 编写一些测试代码,但遇到了无法设置 android.widget.CheckedTextView 对象的检查值的情况。请引用下图。我想以编程方式选择 Alpha 选项 1。我已经尝试了以下代码片段,但正如预期的那样,这不起作用。

 @When("I select Alpha option {int}")
public void i_select_Alpha_option(Integer int1) {


// This coding needs to be completed
// This is not the right way to select or change the value of a checkedTextView
driver.findElementByXPath("//android.widget.CheckedTextView[@text='Alpha Option 01']").click();

}

由于对象类型(CheckedTextView)不可点击,因此代码将不起作用。

问题是,我如何使用 findElementByXpath 或任何其他方法来更改当前选择的

“Charlie Option 03”Alpha Option 01Beta Option 02 就此事而言

请为我指明正确的方向。

提前非常感谢。

enter image description here

最佳答案

尝试以下代码:

driver.findElementByXPath("//*[contains(@text, 'Alpha Option 01')]").click();

或者:

driver.findElementByXPath("//*[contains(text(), 'Alpha Option 01')]").click();

关于java - 我如何更改 android.widget.CheckedTextView 的检查值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62393262/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com