gpt4 book ai didi

android - 如何在 Sauce Labs 上使用 Selenium Automation-Android Emulator 在文本框中输入值

转载 作者:行者123 更新时间:2023-11-29 00:16:36 24 4
gpt4 key购买 nike

在 sauce labs 上自动化 android 模拟器时,即使我使用了以下代码,我也无法在文本框中输入值“123-456-0789”;

 //I have checked the web element also.
driver.findElement(By.id("PatientPhone")).clear();
driver.findElement(By.id("PatientPhone")).sendKeys("123-456-0789");

最佳答案

使用 Javascript 执行器并将值设置为其属性。使用以下代码。希望它能正常工作。

  JavascriptExecutor exe = (JavascriptExecutor) driver;
String query="$('#PatientPhone').attr('value','123-456-0789')";
exe.executeScript(query,"");

关于android - 如何在 Sauce Labs 上使用 Selenium Automation-Android Emulator 在文本框中输入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26303524/

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