- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 UITests 的初学者。目前,我遇到一个问题,无法访问 collectionViewCell 内的元素。
我的 UI 元素结构:
UIViewController
- UITableView
-- UITableViewCell
---> UICollectionView
----> UICollectionViewCell
-----> The element that I would like to get.
我尝试过以下代码:
let tableCellContainer = app.tables["HomeRVMPTableView"].cells.element(boundBy: 0) // Get the first Cell of TableView
let collectionContainer = tableCellContainer.collectionViews["ContainerItemCollectionView"].cells.element(boundBy: 1) // Get the second Cell inside collectionView
let collectionElement = collectionContainer.staticTexts["BuyCashCard"]
XCTAssertFalse(!collectionElement.exists) // FAILED
有什么方法可以更轻松地访问collectionViewCell/tableViewCell吗?当开始使用 UITests 时我很累。
最佳答案
谢谢你们帮助我,我刚刚找到了另一种方法来访问 TableView 中的 Collection View 。
这是我的代码:
let tableCellContainer = app.tables["MainTableView"].cells.element(boundBy: 1)
let cell = tableCellContainer.staticTexts["Brazil"]
cell.tap()
XCTAssert(cell.exists)
希望这能帮助其他和我有同样问题的人。
关于ios - 问 : UITests - How to get collectionCell element inside collectionView nested with TableView cell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47088498/
我有一个包含单元格的 TableView,一个单元格包含一个 CollectionView。 在 CollectionView 中,我有带有 UIImageViews 的单元格。 如果我在 Colle
出于某种原因,我无法弄清楚我做错了什么: 我正在尝试在我的解析数据库中查询 URL,将它们放入名为 facebookPics 的数组中。稍后我想在我的 cellForRowAtIndexPath 中进
我必须创建一个连续有 3 个 UICollectionViewCell 的 UI。所以我使用 UICollectionViewController 创建了它,section = 1 并且没有行 = 来
我是 UITests 的初学者。目前,我遇到一个问题,无法访问 collectionViewCell 内的元素。 我的 UI 元素结构: UIViewController UITableView --
我是一名优秀的程序员,十分优秀!