- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在尝试为 Cordova 应用程序编写 Calabash 测试时遇到了麻烦。 webView 和 cordovaWebView 在本地或 AWS 上对我不起作用。
当我针对设备运行时在本地运行的代码变体:
Then(/^I entered text "(.*?)" into input with id "(.*?)"$/) do |arg1, arg2|
enter_text("SystemWebView css:'##{arg2}'", arg1)
end
但是,在 AWS 上它给了我这个错误:
map SystemWebView css:'#login-email', 查询失败,因为:java.util.concurrent.ExecutionException: java.lang.ClassCastException: sh.calaba.instrumentationbackend.actions.webview.CalabashChromeClient cannot be cast to org.apache .cordova.engine.SystemWebChromeClient (运行时错误) (运行时错误) ./features/step_definitions/calabash_steps.rb:8:in /^I entered text "(.*?)"into input with id "(.*?)"$/'
然后我将文本“test@tester”输入到 ID 为“login-email”的输入中'
features/login.feature:7:in
我尝试的另一个代码变体,希望它能在 AWS Device Farm 上运行:
Then(/^I entered text "(.*?)" into input with id "(.*?)"$/) do |arg1, arg2|
enter_text("CalabashChromeClient css:'##{arg2}'", arg1)
end
但这也给我一个错误:等待元素超时:CalabashChromeClient css:'#login-email' (Calabash::Android::WaitHelpers::WaitError)
使用 cordovaWebView 时,出现以下错误:
超时等待元素:cordovaWebView css:'#login-email' (Calabash::Android::WaitHelpers::WaitError)
我通过在控制台中尝试找到了在本地运行的正确 webview 名称。说到 AWS Device Farm,我在这里有点盲目,非常感谢你们提供的所有提示/技巧。我也愿意更换测试框架。
query("*")
[
[0] {
"id" => nil,
"enabled" => true,
"contentDescription" => nil,
"visible" => true,
"tag" => nil,
"description" => "com.android.internal.policy.impl.PhoneWindow$DecorView{41c4f3b8 V.E..... R.....I. 0,0-720,1232}",
"class" => "com.android.internal.policy.impl.PhoneWindow$DecorView",
"rect" => {
"center_y" => 616,
"center_x" => 360,
"height" => 1232,
"y" => 0,
"width" => 720,
"x" => 0
}
},
[1] {
"id" => nil,
"enabled" => true,
"contentDescription" => nil,
"visible" => true,
"tag" => nil,
"description" => "android.widget.LinearLayout{41c4f8a8 V.E..... ......I. 0,0-720,1232}",
"class" => "android.widget.LinearLayout",
"rect" => {
"center_y" => 616,
"center_x" => 360,
"height" => 1232,
"y" => 0,
"width" => 720,
"x" => 0
}
},
[2] {
"id" => "content",
"enabled" => true,
"contentDescription" => nil,
"visible" => true,
"tag" => nil,
"description" => "android.widget.FrameLayout{41c50560 V.E..... ......I. 0,25-720,1232 #1020002 android:id/content}",
"class" => "android.widget.FrameLayout",
"rect" => {
"center_y" => 628,
"center_x" => 360,
"height" => 1207,
"y" => 25,
"width" => 720,
"x" => 0
}
},
[3] {
"id" => nil,
"enabled" => true,
"contentDescription" => nil,
"visible" => true,
"tag" => nil,
"description" => "android.widget.ImageView{41bb9f40 V.ED.... ........ 0,0-720,1207}",
"class" => "android.widget.ImageView",
"rect" => {
"center_y" => 628,
"center_x" => 360,
"height" => 1207,
"y" => 25,
"width" => 720,
"x" => 0
}
}
]
最佳答案
这个问题似乎与新的 Android 系统 WebViews 有关。例如,您使用的是 Android 5.1 或更高版本吗?与 webView 相同的应用程序在 4.4 智能手机上对我来说工作正常但由于这个错误在某些 5.1 上失败。
阅读其他帖子后,我发现这应该在 Calabash-Android 的 0.5.12 版本中得到修复。
查看更改日志:calabash-android 0.5.12 发行说明修复 Calabash WebView 查询不适用于 Lollipop 和 M 中的新 Android 系统 WebView。
请更新!!!
关于android - AWS Device Farm 上用于 Cordova Android 应用程序的 Calabash,正确的 Web View 名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32958694/
我使用线程将数据发送到我的 USB 设备(不是数据存储)并从设备获取返回数据。 它在前 5 分钟内运行良好。数据输入,数据输出。 (我几乎在第六分钟开始唱歌。) 然后突然失去了联系。 有logcat消
这个问题在这里已经有了答案: 9年前关闭。 Possible Duplicate: adb cannot find my device for Android debugging. Why? 我是安卓
我有一台安装了win10的电脑, 我已在外部硬盘上安装了 ubuntu 16.04, 现在,当我启动计算机并且外部硬盘已连接到电脑时 grub 菜单打开,我可以在 win10 或 ubuntu 之间进
假设我想使用 Microsoft.Azure.Devices 包/SDK 加载设备信息,这与我所说的有什么区别: RegistryManager regManager = RegistryManage
我在 Windows PC 上使用 VS-2017。我可以使用模拟器测试和运行 iOS 应用程序。 现在我开始为 AppStore 构建应用程序。 构建成功。 现在我在项目解决方案菜单中选择“部署..
任何帮助,将不胜感激。我一般对tensorflow和编程都是陌生的。我正在按照github(https://github.com/experiencor/keras-yolo3)中的说明学习YOLO-
我用 adb 将 4 台设备连接到我的笔记本电脑。 最近我开始看到我的一个 android 设备“离线”,而其他设备运行文件。 我的问题是,离线到底是什么意思,是什么原因造成的? 最佳答案 每次adb
我想在我的物理设备上开始用espresso编写的仪器测试。 想法如下:我的公司有一个应用程序的白标解决方案,因此我们有很多应用程序可以放入 Play 商店。为了支持我们的支持团队,我编写了一个测试,为
当出现这种情况时,我的应用程序当前正在接收与之前的应用程序用户帐户关联的推送通知: 玩家安装应用程序并注册为“bob” bob 的设备 token 在网络服务中注册 玩家重新安装了应用程序并注册为“p
我正在使用命令行编译和安装 Android 应用程序,当我尝试将其安装到设备上时,会发生以下情况: $> adb devices List of devices attached 8c092420
我使用标准 CUDA malloc 在 CUDA 中分配了一个内存数组,并将其传递给函数,如下所示: void MyClass::run(uchar4 * input_data) 我还有一个类成员,它
我的真实设备是 Sony Xperia c6502 Android 版本 4.3我确定我已将它连接到我的计算机并打开了开发人员选项/USB 调试 在 SDK 管理器中,已经安装了 Google USB
某些设备的设备密度返回 0。以下代码用于计算设备密度: WindowManager wm = (WindowManager) context .getSystemService(Con
我正在将一个小文件 (8.5 Mb) 上传到 flask 测试服务器。 当文件上传完成后,服务器报告: File "/home/ubuntu/.virtualenvs/eco_app/lib/
我正在编写一个小应用程序,我需要将一个变量传递给一个函数。问题是该变量是一个绑定(bind),但该函数必须接受一个常规变量。 代码: ForEach($deviceArrays.devices, id
我正在编写一个小应用程序,我需要将一个变量传递给一个函数。问题是该变量是一个绑定(bind),但该函数必须接受一个常规变量。 代码: ForEach($deviceArrays.devices, id
我创建了一个新的 quasar 项目,添加了 cordova 并进行了一些尝试。 一切正常,我可以在手机上部署该应用程序并在模拟器中运行它。 现在,我需要获取一些设备信息,我想为此使用 cordova
根据 W3C The ‘device-width’ media feature describes the width of the rendering surface of the output d
我的数据迭代器当前在 CPU 上运行,因为 device=0 参数已弃用。但我需要它与模型的其余部分一起在 GPU 上运行。 这是我的代码: pad_idx = TGT.vocab.stoi[""]
Cordova 版本:3.5.0 我正在尝试使用 pushPlugin 实现推送通知.但是当我在android平台上运行这个应用程序时(我没有尝试过其他平台),有一个错误“device is not
我是一名优秀的程序员,十分优秀!