[JBoss JIRA] (ARQ-1243) Warp: allow finding elements by JSF ids - @FindByJSF (Graphene integration)
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-1243?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated ARQ-1243:
----------------------------
Fix Version/s: warp_1.0.0.tracking
> Warp: allow finding elements by JSF ids - @FindByJSF (Graphene integration)
> ---------------------------------------------------------------------------
>
> Key: ARQ-1243
> URL: https://issues.jboss.org/browse/ARQ-1243
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Warp
> Affects Versions: warp_1.0.0.Alpha2
> Reporter: Lukáš Fryč
> Fix For: warp_1.0.0.tracking
>
>
> Consider following:
> {code:java}
> @FindBy(id = "form:loginPanel:loginButton")
> WebElement loginButton;
> @FindByJSF("loginButton")
> WebElement loginButton;
> // when the locator will be automatically inferred from field name
> @FindByJSF
> WebElement loginButton;
> @FindByJSF
> Calendar calendar;
> {code}
> This will need to allow Graphene test enricher to consume arbitrary annotations - e.g. annotations annotated with @FindCapable providing custom lookup strategy.
--
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
13 years, 3 months
[JBoss JIRA] (ARQ-1240) Warp JSF: allow to execute arbitrary operations in JSF phases
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-1240?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated ARQ-1240:
----------------------------
Fix Version/s: warp_1.0.0.tracking
> Warp JSF: allow to execute arbitrary operations in JSF phases
> -------------------------------------------------------------
>
> Key: ARQ-1240
> URL: https://issues.jboss.org/browse/ARQ-1240
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Warp
> Affects Versions: warp_1.0.0.Alpha2
> Reporter: Lukáš Fryč
> Fix For: warp_1.0.0.tracking
>
>
> We are able to execute verification with help of {{PhaseListener}}.
> However we should be able to invoke JSF logic like:
> * conversion
> * validation
> * action invocation
> To achieve that, one can place auxilliary JSF component into built JSF tree and if there will be any actions defined, trigger action.
> API proposal:
> {code:java}
> @DuringConversion
> public void throwConversionError() {};
> @DuringValidation
> public void throwValidationError() {};
> @DuringApplicationInvocation
> public void manipulateWithModel() {};
> {code}
--
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
13 years, 3 months
[JBoss JIRA] (ARQ-1139) Warp: support for travelling objects
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-1139?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated ARQ-1139:
----------------------------
Summary: Warp: support for travelling objects (was: Warp: support for travelling assertions)
> Warp: support for travelling objects
> ------------------------------------
>
> Key: ARQ-1139
> URL: https://issues.jboss.org/browse/ARQ-1139
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Warp
> Affects Versions: warp_1.0.0.Alpha1
> Reporter: Lukáš Fryč
>
> {code:java}
> @Travelling
> SomeObject obj;
> @Test
> public void should() {
> Warp.execute(new ClientAction() {
> public void action() {
> page.doAction();
> }
> }).verify(new ServerAssertion() {
> public void do() {
> obj.get(); // detect outside of anonymous class call, replace with callback to client for the value ?
> }
> });
> }
> {code}
> copied from https://gist.github.com/3621257
--
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
13 years, 3 months
[JBoss JIRA] (ARQ-1139) Warp: support for @Travelling objects
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-1139?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated ARQ-1139:
----------------------------
Summary: Warp: support for @Travelling objects (was: Warp: support for travelling objects)
> Warp: support for @Travelling objects
> -------------------------------------
>
> Key: ARQ-1139
> URL: https://issues.jboss.org/browse/ARQ-1139
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Warp
> Affects Versions: warp_1.0.0.Alpha1
> Reporter: Lukáš Fryč
>
> {code:java}
> @Travelling
> SomeObject obj;
> @Test
> public void should() {
> Warp.execute(new ClientAction() {
> public void action() {
> page.doAction();
> }
> }).verify(new ServerAssertion() {
> public void do() {
> obj.get(); // detect outside of anonymous class call, replace with callback to client for the value ?
> }
> });
> }
> {code}
> copied from https://gist.github.com/3621257
--
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
13 years, 3 months
[JBoss JIRA] (ARQ-1142) Warp: provide a list of intercepted requests
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-1142?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated ARQ-1142:
----------------------------
Description:
To verify what requests were done during test.
This could lead into support for tracking requests/responses from test.
was:
To verify what requests were done during.
This could lead into support for tracking requests/responses from test.
> Warp: provide a list of intercepted requests
> --------------------------------------------
>
> Key: ARQ-1142
> URL: https://issues.jboss.org/browse/ARQ-1142
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Warp
> Affects Versions: warp_1.0.0.Alpha1
> Reporter: Lukáš Fryč
>
> To verify what requests were done during test.
> This could lead into support for tracking requests/responses from test.
--
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
13 years, 3 months
[JBoss JIRA] (ARQ-1203) Warp: server-side filters
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-1203?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated ARQ-1203:
----------------------------
Fix Version/s: warp_1.next
> Warp: server-side filters
> -------------------------
>
> Key: ARQ-1203
> URL: https://issues.jboss.org/browse/ARQ-1203
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Warp
> Reporter: Lukáš Fryč
> Fix For: warp_1.next
>
>
> Server-side filters will take advantage of using server state to determine if request should be filtered.
> Obviously, assertions would need to make sure the don't have side-effects before it is decided request should be filtered or not.
> Warp can log warnings for such methods which will be verified before request is processed.
--
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
13 years, 3 months