Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用颤振驱动器测试颤振 Cupertino 风格的应用程序。
我无法关闭全屏页面,因为我找不到关闭按钮。
find.by???在库比蒂诺风格的应用程序中点击关闭按钮的正确指令是什么?
find.by???
您可以使用find.pageBack()like inawait driver.tap(find.pageBack());来查找具有返回页面功能的按钮,如果出现在 AppBar 中,则可以是返回箭头或关闭十字。
find.pageBack()
await driver.tap(find.pageBack());
或者,您可以直接使用find.byTooltip('Back')或find.byTooltip('Close')查找返回箭头或关闭按钮。
find.byTooltip('Back')
find.byTooltip('Close')