- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
正在使用我组装的 dart Web 应用程序进行一些测试。我按照标准使用 pub build 运行它,然后执行一个简单的 python -m SimpleHTTPServer 来启动服务器。惊人的。可以在两种浏览器上访问 localhost:8000
。
然后我进入我的 Java 应用程序来运行一些 Selenium 测试。简单如运行应用程序。它在 Chrome 上成功,但在 Firefox 上失败。我已经针对具有不同标题的其他页面进行了测试。它工作得很好并且通过了两项测试,但是与此相关的某些东西似乎不起作用。
当代码执行时,我看到它打开两个浏览器并进行相应的导航。
Java 代码:
@Test
public void testWithChrome(){
WebDriver driver = new ChromeDriver(DesiredCapabilities.chrome());
testSuite(driver);
}
@Test
public void testWithFirefox(){
WebDriver driver = new FirefoxDriver(DesiredCapabilities.firefox());
testSuite(driver);
}
public void testSuite(WebDriver driver){
driver.navigate().to("http://localhost:8000/web/");
Assert.assertTrue("title should start with Polymer Todo App",
driver.getTitle().startsWith("Polymer Todo App"));
System.out.printf("This is a Test: '%s'\n", driver.getTitle());
System.out.println(driver.getTitle().startsWith("Polymer Todo App"));
driver.close();
driver.quit();
}
你可以看到它非常简单。您还可以看到我有一些打印语句。这些打印语句显示在控制台输出中。我只是不确定为什么会出现中止和 UnreachableBrowserException
错误:
Sep 29, 2016 10:07:44 AM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Attempting bi-dialect session, assuming Postel's Law holds true on the remote end
1475158066440 Marionette INFO Listening on port 55006
Sep 29, 2016 10:07:51 AM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: W3C
JavaScript warning: https://normandy.cdn.mozilla.net/static/bundles/selfrepair-c889f52c56e4df3156a1.f5e450e97071.js, line 7: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create
JavaScript warning: http://localhost:8000/web/, line 308: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3207 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js, line 1: unreachable code after return statement
JavaScript warning: http://localhost:8000/web/index.bootstrap.initialize.dart.js line 3213 > Function, line 1: unreachable code after return statement
This is a Test: 'Polymer Todo App'
true
[Child 7828] ###!!! ABORT: Aborting on channel error.: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2027
org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser. It may have died.
Build info: version: 'unknown', revision: 'c7b525d', time: '2016-09-01 14:57:44 -0700'
System info: host: 'CHI-CS-55DXX52', ip: '10.60.68.15', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_77'
Driver info: driver.version: RemoteWebDriver
Capabilities [{rotatable=false, raisesAccessibilityExceptions=false, appBuildId=20160623154057, version=, platform=XP, proxy={}, command_id=1, specificationLevel=0, acceptSslCerts=false, browserVersion=47.0.1, platformVersion=6.1, XULappId={ec8030f7-c20a-464f-9b0e-13a3a9e97384}, browserName=Firefox, takesScreenshot=true, takesElementScreenshot=true, platformName=Windows_NT, device=desktop}]
Session ID: 7431bbcb-b619-48dc-b4ca-ccc14eef1ce8
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:618)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:654)
at org.openqa.selenium.remote.RemoteWebDriver.quit(RemoteWebDriver.java:493)
at com.polymerdart.webdriver.MyFirstTest.testSuite(MyFirstTest.java:36)
at com.polymerdart.webdriver.MyFirstTest.testWithFirefox(MyFirstTest.java:24)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:117)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:42)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:262)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:84)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
Caused by: java.lang.IllegalStateException: UnixUtils may not be used on Windows
at org.openqa.selenium.os.ProcessUtils.getProcessId(ProcessUtils.java:188)
at org.openqa.selenium.os.UnixProcess$SeleniumWatchDog.getPID(UnixProcess.java:222)
at org.openqa.selenium.os.UnixProcess$SeleniumWatchDog.access$300(UnixProcess.java:201)
at org.openqa.selenium.os.UnixProcess.destroy(UnixProcess.java:132)
at org.openqa.selenium.os.CommandLine.destroy(CommandLine.java:155)
at org.openqa.selenium.remote.service.DriverService.stop(DriverService.java:196)
at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:94)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:597)
... 31 more
最佳答案
为了解决这个问题,我执行了以下操作:
static Map<String, WebDriver> driverMap = new HashMap<String,WebDriver>();
@BeforeClass
public static void initDriverMap(){
driverMap.put("chrome", new ChromeDriver(DesiredCapabilities.chrome()));
driverMap.put("firefox", new FirefoxDriver(DesiredCapabilities.firefox()));
}
@AfterClass
public static void cleanUp(){
Iterator it = driverMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String,WebDriver> pair = (Map.Entry)it.next();
pair.getValue().close();
try {
pair.getValue().quit();
}catch(Exception e){}
}
}
@Test
public void testWithChrome(){
WebDriver driver = driverMap.get("chrome");
testSuite(driver);
}
@Test
public void testWithFirefox(){
WebDriver driver = driverMap.get("firefox");
testSuite(driver);
}
public void testSuite(WebDriver driver){
driver.navigate().to("http://localhost:8000/web/");
Assert.assertTrue("title should start with Polymer Todo App",
driver.getTitle().startsWith("Polymer Todo App"));
System.out.printf("This is a Test: '%s'\n", driver.getTitle());
System.out.println(driver.getTitle().startsWith("Polymer Todo App"));
//driver.close();//驱动程序.quit(); }
起初,我在 @AfterClass 中没有使用 try-catch 的情况下运行它,并且它正确执行了所有任务,但随后退出失败。由于我没有测试退出,所以我在它周围放置了一个 try-catch 来抑制它,因为现在 Mozilla 似乎正在根据需要触发。
本质上,当我运行该类进行测试时,它会首先放入测试用例驱动程序。我不想自动化测试,因为我需要测试功能。我可以稍后更新。
在课后,我会运行清理并关闭所有打开的驱动程序。有一个缺点,那就是所有驱动程序都保持开放状态,直到测试全部完成。虽然我不想这样做,但我不想在我的实际 testSuite 中放置 try-catch。
在研究了一些变体之后,我发现最好的结果是在给定时间点打开更少的浏览器,如下所示:
public void testWithChrome(){
WebDriver driver = new ChromeDriver(DesiredCapabilities.chrome());
testSuite(driver);
driver.close();
try {
driver.quit();
}catch(Exception e){
System.out.println("Driver error preventing from Quitting.");
}
}
@Test
public void testWithFirefox(){
WebDriver driver = new FirefoxDriver(DesiredCapabilities.firefox());
testSuite(driver);
driver.close();
try {
driver.quit();
}catch(Exception e){
System.out.println("Driver error preventing from Quitting.");
}
}
public void testSuite(WebDriver driver){
driver.navigate().to("http://localhost:8000/web/");
Assert.assertTrue("title should start with Polymer Todo App",
driver.getTitle().startsWith("Polymer Todo App"));
System.out.printf("This is a Test: '%s'\n", driver.getTitle());
System.out.println(driver.getTitle().startsWith("Polymer Todo App"));
}
因为我想在同一范围内关闭并退出驱动程序。这样就没有测试用例关闭浏览器,就像它运行整个套件,然后在完成该功能后关闭一样。
关于java - Firefox 驱动程序失败并出现无法访问的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39772902/
我正在尝试为基于 arm 的板交叉编译驱动程序。在 make 文件中,包含文件的搜索路径是主机内核的路径,即它指向 ubuntu 附带的 linux 头文件。我在主机系统(i7/ubuntu)上也有目
1、准备材料 开发板(正点原子stm32f407探索者开发板V2.4) 。 STM32CubeMX软件(Version 6.10.0) 。 野火DAP仿真器 。 keil µVis
是否可以通过 c# 应用程序“驱动”excel(即从 excel gui 下拉列表中选择某些内容,按下按钮并读取特定单元格的内容)? 这并不是真正用于测试,而是用于类似于 selenium 的数据报废
给定任何具有超过 5 个 View 和 View 模型的中间 MVVM 应用程序,是否有任何推荐的设计模式来说明如何为此类应用程序搭建脚手架? 现在我通常有一个在 App.OnStartup 中创建的
我想知道如何使用曼哈顿距离启发式来驱动 NxN 二维数组中的搜索。我有以下曼哈顿距离: private int manhattan(int[] pos, int tile) { int
我试图了解 CUmodule 在 CUDA 驱动程序 API 函数中实际上代表什么。 许多 CUDA 驱动程序 API 函数都有一个 CUmodule 句柄,但它是什么?它是引导驱动程序调用过程的 d
我正在尝试创建一个 java 程序,它将创建 excel 文件并将其上传到谷歌驱动器中。上传后我需要它来授予权限。我已经完成了所有这些,但问题在于尝试将 excel 文件转换为 google 文件,以
我正在拼命尝试从 Linux(Raspbian 内核 4.4.12-v7+)与使用 TIUSB3410 USB 部件的设备进行通信。 这是 dmesg 的输出: [ 2730.016013] usb
我有一个关于在 PCIe 上使用突发读写的问题。我有一个 fpga,它通过 PCIe 连接到 cpu。我有一个简单的驱动程序,仅用于测试。驱动程序向 FPGA 写入数据以及从 FPGA 读取数据。 f
我有大约 500 条通往特定页面的可能路径,我需要测试所有这些路径。该页面的每个路径看起来都类似于此(使用 PHP 网络驱动程序;通常有大约 10 个步骤): // Navigate to form
如果chrome驱动的版本和当前的chrome版本不同,我想写一个python代码,下载并运行与当前chrome版本匹配的chrome驱动。 这就是我一直在寻找的东西 driver = webdriv
我在 Centos 7 Linux 机器上尝试通过 pyodbc 连接到 SQL 数据库。我了解到您需要设置 DSN,您可以通过安装 freetds 驱动程序并执行以下操作来实现: import py
是否可以使用 NUnit 通过 NDepend 运行 CQL 查询?如果能够将 NDepend dll 包含在 UnitTests 库中并编写如下测试,那就太好了: [Test] public voi
我在 cassandra 中有巨大的表,超过 20 亿行并且还在增加。这些行有一个日期字段,它遵循日期桶模式以限制每一行。 即便如此,对于某个特定日期,我也有超过一百万条条目。 我想尽快读取和处理每一
考虑以下示例,其中一个模块的输出 (inner::out) 应该驱动两个输出(outer::out 和 outer::out2) 的上层层次: #include SC_MODULE(inner) {
我不确定是否可以有一个具有多个 MySQL 根的连接器。当我尝试只使用一根根时,它效果完美。我的有 2 个根的代码如下所示: [ 'locale' => 'es_ES.UTF-8',
我的桌面APP无法注册Mysql JDBC驱动 我下载mysql-connector-java-5.1.16.zip 解压mysql-connector-java-5.1.16-bin.jar并将其放
我有一个无限循环等待输入的 python 脚本,然后输入发生时做一些事情。我的问题是制作 python告诉 emacs 做某事。我只需要一些方法来发送 emacs 输入并让 emacs 评估该输入。
我最初问的没有明确说明我的问题/问题,所以我会更好地解释它。我有一个将 JDialog 设置为可见的 JButton。 JDialog 有一个 WindowListener 将其设置为在 window
假设“doc”是我想插入到 MongoDB 集合中的一些文档,而“collection”是我要将文档插入到的集合。 我有如下内容: try { WriteConcern wc = new Wr
我是一名优秀的程序员,十分优秀!