- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
问题:使用 iOS 实现自动化 使用 Appium 的实际设备,我所尝试的只是向下滚动到当前页面中不存在的特定元素并选择该元素。/单击该元素。
到目前为止使用过:
使用了scrollTo("text") 和scrollToexact("text") - 发现它现在在 java-client 中已被废弃。只是想再次确认这是真的吗?
尝试过使用以下内容,但仍然没有成功
MobileElement slider = 驱动程序 .findElement(MobileBy .IosUIAutomation(".tableViews()[0]" + ".scrollToElementWithPredicate(\"名称包含' slider '\")"));assertEquals(slider.getAttribute("name"), "Sliders");
如果有人能帮我解决这个问题,那将会很有帮助,我也想稍后为 android 做滚动,还没有尝试过。
下面是我使用了各种技术但仍然没有成功的代码,代码运行启动应用程序,但不滚动并选择任何元素:
import java.io.File;
import java.net.URL;
import java.util.HashMap;
import java.util.concurrent.TimeUnit;
import org.junit.AfterClass;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import io.appium.java_client.MobileBy;
import io.appium.java_client.MobileElement;
import io.appium.java_client.ios.IOSDriver;
import io.appium.java_client.ios.IOSElement;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class testfour {
public static IOSDriver driver;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
DesiredCapabilities capabilities = new DesiredCapabilities();
//capabilities.setCapability("noReset", true);
capabilities.setCapability("platformName", "iOS");
capabilities.setCapability("deviceName","iPhone_6");
capabilities.setCapability("udid", "840384833537f40d011032eaaf20a53705a451ce");
capabilities.setCapability("BROWSER_NAME", "iOS");
capabilities.setCapability(CapabilityType.VERSION, "9.2.1");
capabilities.setCapability(CapabilityType.PLATFORM, "MAC");
capabilities.setCapability("autoAcceptAlerts", true);
capabilities.setCapability("autoAcceptAlerts", true);
driver = new IOSDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void test() throws InterruptedException {
System.out.println("TEST STARTED");
//Make
driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIAScrollView[1]/UIATableView[1]/UIATableCell[6]/UIAStaticText[1]").click();
System.out.println("TEST STARTED6 MAKE");
//Select Audi and model a8
driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[8]/UIAStaticText[1]").click();
System.out.println("TEST STARTED5 AUDI");
driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIAScrollView[1]/UIATableView[1]/UIATableCell[8]/UIAStaticText[2]").click();
System.out.println("TEST STARTED4 MODEL");
//driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[17]/UIAStaticText[1]").click();
System.out.println("TEST STARTED3");
//String Str = "A8";
System.out.println("TEST STARTED2");
//MobileElement slider = (MobileElement) driver.findElement(MobileBy.IosUIAutomation(".tableViews()[2]"+ ".scrollToElementWithPredicate(\"name CONTAINS 'Slider'\")"));
MobileElement slider = (MobileElement) driver.findElement(MobileBy.IosUIAutomation("//UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[17]"+ ".scrollToElementWithPredicate(\"name CONTAINS 'A8'\")"));
System.out.println("TEST STARTED1");
assertEquals(slider.getAttribute("A8"), "Sliders");
System.out.println("TEST STARTED0");
// MobileElement table = (MobileElement) driver.findElement(MobileBy.IosUIAutomation(".tableViews()[0]"));
// MobileElement slider = (MobileElement) table.findElement(MobileBy.IosUIAutomation(".scrollToElementWithPredicate(\"name CONTAINS 'Slider'\")"));
// assertEquals(slider.getAttribute("name"), "Sliders");
//driver.findElementByIosUIAutomation(".scrollToElementWithName(\""+ Str + "\")").click();
//WebElement tableView = driver.findElementByIosUIAutomation(".tableViews() [2]");
//((IOSElement) tableView).scrollTo("A8");
//((IOSElement) tableView).scrollTo("A8").click();
System.out.println("TEST STARTED1");
//driver.execute("mobile: scroll", [{direction: 'down', driver.findElementByXPath: ("//UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[17]/UIAStaticText[1]"}]);
//driver.scrollTo("A8").click();
//JavascriptExecutor jes = (JavascriptExecutor) driver;
//HashMap<String, String> scrollObject = new HashMap<String, String> ();
//scrollObject.put("direction", "down");
//scrollObject.put("element", (driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[17]/UIAStaticText[1]")));
//jes.executeScript("mobile: scroll", scrollObject);
//jes.executeScript(arg0, arg1)
//driver.swipe(startx, starty, endx, endy, duration);
//driver.switchTo()
//jes.executeScript("arguments[0].scrollIntoView(true);", driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[17]/UIAStaticText[1]"));
//driver.findElementByXPath("//UIAApplication[1]/UIAWindow[1]/UIAButton[7]").click();
// driver.scrollToExact(text)
// driver.scrollTo("//UIAApplication[1]/UIAWindow[1]/UIAButton[7]").click();
//Select Model000
driver.findElement(By.linkText("All Models")).click();
driver.findElement(By.linkText("AVALON")).click();
//Click on Search button
driver.findElement(By.id("search_btn")).click();
// Click on the Search Alert Bar
driver.findElement(By.id("switchButton")).click();
//ex: for content-desc //Click on the Back button and navigate to home page
driver.findElement(By.name("Navigate up")).click();
//Now click on the Menu in the home page
driver.findElement(By.name("Navigate up")).click();
//Click on the Search Search under the menu item
driver.findElementByLinkText("Saved Searches").click();
//get the text
String text = driver.findElement(By.id("name_tv")).getText();
System.out.println("Actual Text:"+text);
System.out.println("Test has been completed");
}
private void assertEquals(String attribute, String string) {
// TODO Auto-generated method stub
}
@AfterClass
public void tearDown()
{
driver.quit();
}
}
最佳答案
意识到这已经过时了,但在寻找不同的问题时遇到了它,并认为我可以提供帮助。
我在这里所做的是使用 Appium“滑动”。
首先,我获取屏幕的尺寸:
Dimension size = driver.manage().window().getSize();
然后,我向下滑动屏幕:
driver.swipe(size.width / 3, (int) (size.height * 0.8), size.width / 3, (int) (size.height * 0.8) - 200, 300);
滑动后,我调用 boolean 方法来查找返回的元素:
return driver.findElement(Bylocator).isDisplayed();
我将这个滑动操作/isDisplayed 检查封装在 FluentWait 中,但是带有某种超时条件的简单 while 循环和 isDisplayed 检查也可以工作。
在元素被滑动并找到后,一个简单的点击调用将完成您的请求。(注意:我在 iOS 和 Android 上使用此过程,因此它也应该适用于您的两个平台。)
TL;DR - 使用 driver.swipe,检查元素是否显示。如果没有,请滑动并再次检查。包裹在您选择的循环中,直到找到元素或循环超时。
关于java - iOS-实际设备-appium滚动: Need to scroll to a particular element and click,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37474776/
我想知道,如果我的函数没有相似的名称,我是否需要使用命名空间? 另外我无法掌握从特定文件夹导入所有命名空间的方法... 最佳答案 I'm wondering, that if my functions
我运行 2to3 -f all -f idioms -f buffer -f set_literal -f ws_comma foo.py 输出: RefactoringTool: No change
我对 RoR 还是很陌生,我正在尝试使用 button_to delete 按钮删除一个对象。但是,使用我编写的代码,当我尝试将它获取到 destroy 方法的/needs/:id 时,它会将我带到/
当我运行代码时,我在 DEBUG Console 中发现了这个错误如下图所示错误: Restarted application in 2,804ms. [38;5;248m════════ Excep
我有一个实现 __dir__ 方法的类。但是,我并不完全确定 dir API 的一些细节。 A:__dir__ 是否真的需要返回一个列表?我的实现是使用 set 来避免两次列出属性,我需要在返回之前将
我正在尝试执行对非官方 Instagram API python 库的调用,在我修复了几个需要依赖项的错误之后,我被困在了这个错误上。 File "C:\Users\Pablo\Desktop\tx
我正在使用 SingleChildScrollView 和 Column 来显示滑动条和 gridview。 如果我在我的专栏中使用一些其他小部件,如文本、图像,应用程序显示正常。但是我的swiper
我正在尝试卸载 zsh 插件 (macos),我修改了 .zshrc 文件并从 中删除了 macos >plugin 列表,并删除路径 ~/.oh-my-zsh/plugins 中的 macos 文件
我正在尝试卸载 zsh 插件 (macos),我修改了 .zshrc 文件并从 中删除了 macos >plugin 列表,并删除路径 ~/.oh-my-zsh/plugins 中的 macos 文件
Exception caught by rendering library ═════════════════════════════════ RenderBox was not laid out:
我对 Python 很陌生。我正在试用 threading模块。我遇到了 Event对象。 事件对象有wait set clear职能。我了解等待、设置和清除正在做什么。但是我不太明白为什么会有一个单
我需要在 SQL Server 的 sql 查询中转义 [ select * from sometable where name like '[something]'; 我实际上正在寻找某个东西之前的
我的要求是这样的: 我在数据库和时区中保存以毫秒为单位的时间。例如,以毫秒为单位的时间是 1223123123232长时区是 Asia/Calcutta 。我必须将其转换为 Africa/Asmara
我的表中有两个整数列,其中第一列填充了一些随机数,第二列为空。现在是否可以将第一列按升序排序,同时按降序排序并显示为第二列?我有下表的示例。 初始表: col1 col2 5 7 3 9
我正在使用 Instruments 检查我的应用程序的内存泄漏并向我展示: NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ChangeAcc
我有课 class Person { // some other fields for this object std::vector relatives; } 然后是一个返回 Person
在下面的代码中,为什么需要 .page-wrap:after? 理论上,如果没有这个,粘性页脚不应该工作吗?为什么不呢? * { margin: 0; } html, body { heigh
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我看过维基百科的图数据库,还是不明白。 什么是“无索引邻接”? 可不可以理解为“不是把主键存到其他表的行,而是直接存这些行的物理位置” 最佳答案 当您的数据可以表示为图形( map 上的路线、一些树等
我是 AngularJS 的新手,但我真的很喜欢 AngularJS 的工作方式,所以我想将它部署为我的 Google 云端点后端的客户端。然后我立即遇到两个问题: 1、放在哪里myCallback
我是一名优秀的程序员,十分优秀!