[JBoss JIRA] (ARQGRA-413) @InFrame incompatible with GrapheneElement
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQGRA-413?page=com.atlassian.jira.plugin... ]
Lukáš Fryč updated ARQGRA-413:
------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 2.0.1.Final
Resolution: Done
> @InFrame incompatible with GrapheneElement
> ------------------------------------------
>
> Key: ARQGRA-413
> URL: https://issues.jboss.org/browse/ARQGRA-413
> Project: Arquillian Graphene
> Issue Type: Bug
> Affects Versions: 2.0.0.Final
> Reporter: Jan Dosoudil
> Assignee: Juraj Húska
> Fix For: 2.0.1.Final
>
>
> {code:title=Exception}
> Caused by: java.lang.NullPointerException
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper$3.run(ReflectionHelper.java:214)
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper$3.run(ReflectionHelper.java:208)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper.getFieldsWithAnnotation(ReflectionHelper.java:208)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:101)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:107)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:107)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrich(InFrameEnricher.java:61)
> ... 68 more
> {code}
> {code}
> @RunWith(Arquillian.class)
> @WarpTest
> @RunAsClient
> public class Test {
> @FindBy(id="x")
> @InFrame(nameOrId="y")
> private GrapheneElement el;
> ....
> }
> {code}
> InFrameEnricher declares DO_NOT_ENRICH_FURTHER Set which is used to ignore some interfaces but doesn't ignore descendants - ignores WebElement but not GrapheneElement.
> ReflectionHelper doesn't handle Interfaces well.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (ARQGRA-413) @InFrame incompatible with GrapheneElement
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/ARQGRA-413?page=com.atlassian.jira.plugin... ]
Juraj Húska commented on ARQGRA-413:
------------------------------------
Thank you [~dosoudilj] for very good analysis!
Lukas, I have sent a pull request to resolve this issue. Please see also the PR comments.
> @InFrame incompatible with GrapheneElement
> ------------------------------------------
>
> Key: ARQGRA-413
> URL: https://issues.jboss.org/browse/ARQGRA-413
> Project: Arquillian Graphene
> Issue Type: Bug
> Affects Versions: 2.0.0.Final
> Reporter: Jan Dosoudil
> Assignee: Juraj Húska
>
> {code:title=Exception}
> Caused by: java.lang.NullPointerException
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper$3.run(ReflectionHelper.java:214)
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper$3.run(ReflectionHelper.java:208)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper.getFieldsWithAnnotation(ReflectionHelper.java:208)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:101)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:107)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:107)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrich(InFrameEnricher.java:61)
> ... 68 more
> {code}
> {code}
> @RunWith(Arquillian.class)
> @WarpTest
> @RunAsClient
> public class Test {
> @FindBy(id="x")
> @InFrame(nameOrId="y")
> private GrapheneElement el;
> ....
> }
> {code}
> InFrameEnricher declares DO_NOT_ENRICH_FURTHER Set which is used to ignore some interfaces but doesn't ignore descendants - ignores WebElement but not GrapheneElement.
> ReflectionHelper doesn't handle Interfaces well.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (ARQGRA-413) @InFrame incompatible with GrapheneElement
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/ARQGRA-413?page=com.atlassian.jira.plugin... ]
Juraj Húska updated ARQGRA-413:
-------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/arquillian/arquillian-graphene/pull/93
> @InFrame incompatible with GrapheneElement
> ------------------------------------------
>
> Key: ARQGRA-413
> URL: https://issues.jboss.org/browse/ARQGRA-413
> Project: Arquillian Graphene
> Issue Type: Bug
> Affects Versions: 2.0.0.Final
> Reporter: Jan Dosoudil
> Assignee: Juraj Húska
>
> {code:title=Exception}
> Caused by: java.lang.NullPointerException
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper$3.run(ReflectionHelper.java:214)
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper$3.run(ReflectionHelper.java:208)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.arquillian.graphene.enricher.ReflectionHelper.getFieldsWithAnnotation(ReflectionHelper.java:208)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:101)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:107)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichFurtherSpecificAnnotation(InFrameEnricher.java:107)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrichRecursivelyGrapheneProxyInstances(InFrameEnricher.java:93)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.registerInFrameInterceptor(InFrameEnricher.java:86)
> at org.jboss.arquillian.graphene.enricher.InFrameEnricher.enrich(InFrameEnricher.java:61)
> ... 68 more
> {code}
> {code}
> @RunWith(Arquillian.class)
> @WarpTest
> @RunAsClient
> public class Test {
> @FindBy(id="x")
> @InFrame(nameOrId="y")
> private GrapheneElement el;
> ....
> }
> {code}
> InFrameEnricher declares DO_NOT_ENRICH_FURTHER Set which is used to ignore some interfaces but doesn't ignore descendants - ignores WebElement but not GrapheneElement.
> ReflectionHelper doesn't handle Interfaces well.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (ARQ-1590) Update JBoss parent to the latest one
by Stefan Miklosovic (JIRA)
Stefan Miklosovic created ARQ-1590:
--------------------------------------
Summary: Update JBoss parent to the latest one
Key: ARQ-1590
URL: https://issues.jboss.org/browse/ARQ-1590
Project: Arquillian
Issue Type: Component Upgrade
Security Level: Public (Everyone can see)
Components: Extension - Droidium
Affects Versions: 1.0.0.Alpha2
Reporter: Stefan Miklosovic
Bump jboss-parent from version 11 to version 12.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (ARQ-1589) Update jboss-parent
by Karel Piwko (JIRA)
Karel Piwko created ARQ-1589:
--------------------------------
Summary: Update jboss-parent
Key: ARQ-1589
URL: https://issues.jboss.org/browse/ARQ-1589
Project: Arquillian
Issue Type: Component Upgrade
Security Level: Public (Everyone can see)
Components: Extension - Drone
Affects Versions: drone_1.2.0.Final
Reporter: Karel Piwko
Update Arquillian Drone to latest jboss-parent. At the same time, remove compiler plugin config, as this is already a part of parent.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month