[JBoss JIRA] (ARQ-2140) Support for specifying the architecture for IE driver binary
by Matous Jobanek (JIRA)
[ https://issues.jboss.org/browse/ARQ-2140?page=com.atlassian.jira.plugin.s... ]
Matous Jobanek reassigned ARQ-2140:
-----------------------------------
Assignee: Vaclav Muzikar
> Support for specifying the architecture for IE driver binary
> ------------------------------------------------------------
>
> Key: ARQ-2140
> URL: https://issues.jboss.org/browse/ARQ-2140
> Project: Arquillian
> Issue Type: Enhancement
> Components: Extension - Drone
> Reporter: Vaclav Muzikar
> Assignee: Vaclav Muzikar
> Fix For: drone_2.4.2
>
>
> When automatically downloading the IE driver binary, it should be possible to specify the target architecture.
> 64 bit version of the IE driver is having some issues with some IE versions, specifically the {{sendKeys}} method is very slow. Therefore it's recommended to use the 32 bit version of the driver.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 4 months
[JBoss JIRA] (ARQ-2142) TestNG - "unknown stack trace" on @Test(timeOut=10000)
by Mark S (JIRA)
[ https://issues.jboss.org/browse/ARQ-2142?page=com.atlassian.jira.plugin.s... ]
Mark S updated ARQ-2142:
------------------------
Summary: TestNG - "unknown stack trace" on @Test(timeOut=10000) (was: TestNG - "unknown stack trace" on @Test( timeOut=10000))
> TestNG - "unknown stack trace" on @Test(timeOut=10000)
> ------------------------------------------------------
>
> Key: ARQ-2142
> URL: https://issues.jboss.org/browse/ARQ-2142
> Project: Arquillian
> Issue Type: Bug
> Affects Versions: 1.1.12.Final, 1.1.13.Final
> Environment: * Windows 10
> * Eclipse Oxygen
> * Wildfly 10.1.0.Final
> * Eclipse TestNG Plugin 6.11.0.201703011520
> * https://github.com/ingwarsw/arquillian-suite-extension
> Reporter: Mark S
>
> TestNG - "unknown stack trace" on @Test( timeOut=10000)
> When setting a "org.testng.annotations.Test" annotation timeout value the following exception is output
> {code:java}
> @Test( timeOut=10000)
> public void theTest() throws Exception
> {
> Assert.assertEquals( 1, 1 );
> }
> {code}
> The only error logs before failure.
> {code}
> 14:16:27,461 INFO [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "test.war" (runtime-name : "test.war")
> Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
> WARNING: Argument 1 for UpdateTestResultBeforeAfter.update is null. It won't be invoked.
> FAILED: theTest
> ===============================================
> Default test
> Tests run: 1, Failures: 1, Skips: 0
> ===============================================
> Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
> WARNING: Argument 2 for ArquillianServiceDeployer.undeploy is null. It won't be invoked.
> 14:16:28,472 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 92) WFLYUT0022: Unregistered web context: /test
> {code}
> Maven POM depedencies
> {code:xml}
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-depchain</artifactId>
> <version>2.2.4</version>
> <type>pom</type>
> <scope>compile</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-api</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-api-maven</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-spi</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.core</groupId>
> <artifactId>arquillian-core-api</artifactId>
> <version>1.1.13.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.wildfly</groupId>
> <artifactId>wildfly-arquillian-container-managed</artifactId>
> <version>8.2.1.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.protocol</groupId>
> <artifactId>arquillian-protocol-servlet</artifactId>
> <version>1.1.13.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.testng</groupId>
> <artifactId>arquillian-testng-container</artifactId>
> <version>1.1.13.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.eu.ingwar.tools</groupId>
> <artifactId>arquillian-suite-extension</artifactId>
> <version>1.1.4</version>
> <scope>test</scope>
> </dependency>
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 4 months
[JBoss JIRA] (ARQ-2142) TestNG - "unknown stack trace" on @Test( timeOut=10000)
by Mark S (JIRA)
[ https://issues.jboss.org/browse/ARQ-2142?page=com.atlassian.jira.plugin.s... ]
Mark S updated ARQ-2142:
------------------------
Description:
TestNG - "unknown stack trace" on @Test( timeOut=10000)
When setting a "org.testng.annotations.Test" annotation timeout value the following exception is output
{code:java}
@Test( timeOut=10000)
public void theTest() throws Exception
{
Assert.assertEquals( 1, 1 );
}
{code}
The only error logs before failure.
{code}
14:16:27,461 INFO [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "test.war" (runtime-name : "test.war")
Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
WARNING: Argument 1 for UpdateTestResultBeforeAfter.update is null. It won't be invoked.
FAILED: theTest
===============================================
Default test
Tests run: 1, Failures: 1, Skips: 0
===============================================
Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
WARNING: Argument 2 for ArquillianServiceDeployer.undeploy is null. It won't be invoked.
14:16:28,472 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 92) WFLYUT0022: Unregistered web context: /test
{code}
Maven POM depedencies
{code:xml}
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-depchain</artifactId>
<version>2.2.4</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-api</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-api-maven</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-spi</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.core</groupId>
<artifactId>arquillian-core-api</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>8.2.1.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-servlet</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eu.ingwar.tools</groupId>
<artifactId>arquillian-suite-extension</artifactId>
<version>1.1.4</version>
<scope>test</scope>
</dependency>
{code}
was:
TestNG - "unknown stack trace" on @Test( timeOut=10000)
When setting a "org.testng.annotations.Test" annotation timeout value the following exception is output
{code:java}
@Test( timeOut=10000)
public void theTest() throws Exception
{
Assert.assertEquals( 1, 1 );
}
{code}
{code}
14:16:27,461 INFO [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "test.war" (runtime-name : "test.war")
Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
WARNING: Argument 1 for UpdateTestResultBeforeAfter.update is null. It won't be invoked.
{code}
Maven POM depedencies
{code:xml}
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-depchain</artifactId>
<version>2.2.4</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-api</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-api-maven</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-spi</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.core</groupId>
<artifactId>arquillian-core-api</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>8.2.1.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-servlet</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eu.ingwar.tools</groupId>
<artifactId>arquillian-suite-extension</artifactId>
<version>1.1.4</version>
<scope>test</scope>
</dependency>
{code}
> TestNG - "unknown stack trace" on @Test( timeOut=10000)
> -------------------------------------------------------
>
> Key: ARQ-2142
> URL: https://issues.jboss.org/browse/ARQ-2142
> Project: Arquillian
> Issue Type: Bug
> Affects Versions: 1.1.12.Final, 1.1.13.Final
> Environment: * Windows 10
> * Eclipse Oxygen
> * Wildfly 10.1.0.Final
> * Eclipse TestNG Plugin 6.11.0.201703011520
> * https://github.com/ingwarsw/arquillian-suite-extension
> Reporter: Mark S
>
> TestNG - "unknown stack trace" on @Test( timeOut=10000)
> When setting a "org.testng.annotations.Test" annotation timeout value the following exception is output
> {code:java}
> @Test( timeOut=10000)
> public void theTest() throws Exception
> {
> Assert.assertEquals( 1, 1 );
> }
> {code}
> The only error logs before failure.
> {code}
> 14:16:27,461 INFO [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "test.war" (runtime-name : "test.war")
> Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
> WARNING: Argument 1 for UpdateTestResultBeforeAfter.update is null. It won't be invoked.
> FAILED: theTest
> ===============================================
> Default test
> Tests run: 1, Failures: 1, Skips: 0
> ===============================================
> Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
> WARNING: Argument 2 for ArquillianServiceDeployer.undeploy is null. It won't be invoked.
> 14:16:28,472 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 92) WFLYUT0022: Unregistered web context: /test
> {code}
> Maven POM depedencies
> {code:xml}
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-depchain</artifactId>
> <version>2.2.4</version>
> <type>pom</type>
> <scope>compile</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-api</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-api-maven</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.shrinkwrap.resolver</groupId>
> <artifactId>shrinkwrap-resolver-spi</artifactId>
> <version>2.2.4</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.core</groupId>
> <artifactId>arquillian-core-api</artifactId>
> <version>1.1.13.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.wildfly</groupId>
> <artifactId>wildfly-arquillian-container-managed</artifactId>
> <version>8.2.1.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.protocol</groupId>
> <artifactId>arquillian-protocol-servlet</artifactId>
> <version>1.1.13.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.arquillian.testng</groupId>
> <artifactId>arquillian-testng-container</artifactId>
> <version>1.1.13.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.eu.ingwar.tools</groupId>
> <artifactId>arquillian-suite-extension</artifactId>
> <version>1.1.4</version>
> <scope>test</scope>
> </dependency>
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 4 months
[JBoss JIRA] (ARQ-2142) TestNG - "unknown stack trace" on @Test( timeOut=10000)
by Mark S (JIRA)
Mark S created ARQ-2142:
---------------------------
Summary: TestNG - "unknown stack trace" on @Test( timeOut=10000)
Key: ARQ-2142
URL: https://issues.jboss.org/browse/ARQ-2142
Project: Arquillian
Issue Type: Bug
Affects Versions: 1.1.13.Final, 1.1.12.Final
Environment: * Windows 10
* Eclipse Oxygen
* Wildfly 10.1.0.Final
* Eclipse TestNG Plugin 6.11.0.201703011520
* https://github.com/ingwarsw/arquillian-suite-extension
Reporter: Mark S
TestNG - "unknown stack trace" on @Test( timeOut=10000)
When setting a "org.testng.annotations.Test" annotation timeout value the following exception is output
{code:java}
@Test( timeOut=10000)
public void theTest() throws Exception
{
Assert.assertEquals( 1, 1 );
}
{code}
{code}
14:16:27,461 INFO [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0010: Deployed "test.war" (runtime-name : "test.war")
Sep 05, 2017 2:16:28 PM org.jboss.arquillian.core.impl.ObserverImpl resolveArguments
WARNING: Argument 1 for UpdateTestResultBeforeAfter.update is null. It won't be invoked.
{code}
Maven POM depedencies
{code:xml}
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-depchain</artifactId>
<version>2.2.4</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-api</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-api-maven</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-spi</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.core</groupId>
<artifactId>arquillian-core-api</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>8.2.1.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-servlet</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eu.ingwar.tools</groupId>
<artifactId>arquillian-suite-extension</artifactId>
<version>1.1.4</version>
<scope>test</scope>
</dependency>
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 4 months
[JBoss JIRA] (ARQ-2141) Update Selenium to 3.5.3
by Matous Jobanek (JIRA)
Matous Jobanek created ARQ-2141:
-----------------------------------
Summary: Update Selenium to 3.5.3
Key: ARQ-2141
URL: https://issues.jboss.org/browse/ARQ-2141
Project: Arquillian
Issue Type: Component Upgrade
Components: Extension - Drone
Affects Versions: drone_2.4.1
Reporter: Matous Jobanek
Assignee: Matous Jobanek
Fix For: drone_2.4.2
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 4 months