[JBoss JIRA] (ARQGRA-226) graphene-webdriver-ftest cleanup for reference usage
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQGRA-226?page=com.atlassian.jira.plugin... ]
Lukáš Fryč updated ARQGRA-226:
------------------------------
Fix Version/s: 2.0.0.Beta1
(was: 2.0.0.Alpha3)
> graphene-webdriver-ftest cleanup for reference usage
> ----------------------------------------------------
>
> Key: ARQGRA-226
> URL: https://issues.jboss.org/browse/ARQGRA-226
> Project: Arquillian Graphene
> Issue Type: Enhancement
> Reporter: Lukáš Fryč
> Priority: Trivial
> Fix For: 2.0.0.Beta1
>
>
> {{graphene-webdriver-ftest}} should be used as reference usage for Graphene, thus we need to:
> * remove dependency on {{arquillian-test-impl-base}}
> * remove dependencies which are commented out
> * add comments
> ** on depchain - it brings all the dependencies
> ** on arquillian-junit-standalone - explain what dependencies might be used instead {{arquillian-{testng,junit}-{standalone,container}}}
--
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
12 years, 9 months
[JBoss JIRA] (ARQGRA-42) Reduce logging levels
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQGRA-42?page=com.atlassian.jira.plugin.... ]
Lukáš Fryč updated ARQGRA-42:
-----------------------------
Fix Version/s: 2.0.0.Beta1
(was: 2.0.0.Alpha3)
> Reduce logging levels
> ---------------------
>
> Key: ARQGRA-42
> URL: https://issues.jboss.org/browse/ARQGRA-42
> Project: Arquillian Graphene
> Issue Type: Feature Request
> Components: junit, testng
> Affects Versions: 1.0.0.Alpha2
> Reporter: Karel Piwko
> Assignee: Karel Piwko
> Priority: Optional
> Fix For: 2.0.0.Beta1
>
>
> Ajocado outputs many debug information under INFO logging level. This level should be reduced to debug or even debug/fine.
> It makes execution of the test slower and this information is not required until debugging.
> It manifest namely with JUnit which redirects test output to console.
--
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
12 years, 9 months
[JBoss JIRA] (ARQGRA-197) Support for Page Objects encapsulating location
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQGRA-197?page=com.atlassian.jira.plugin... ]
Lukáš Fryč updated ARQGRA-197:
------------------------------
Fix Version/s: 2.0.0.Beta1
(was: 2.0.0.Alpha3)
> Support for Page Objects encapsulating location
> -----------------------------------------------
>
> Key: ARQGRA-197
> URL: https://issues.jboss.org/browse/ARQGRA-197
> Project: Arquillian Graphene
> Issue Type: Feature Request
> Affects Versions: 2.0.0.Alpha2
> Reporter: Lukáš Fryč
> Assignee: Juraj Húska
> Priority: Minor
> Fix For: 2.0.0.Beta1
>
>
> {code:java|title=ConferencePage.java}
> @Location("view/conference/create.jsf")
> public class ConferencePage {
>
> @FindBy(id = "create")
> private ConferenceForm form;
>
> public ConferenceForm getForm() {
> return form;
> }
> }
> public class ConferencePage implements Bookmarkable {
>
> @FindBy(id = "create")
> private ConferenceForm form;
>
> public ConferenceForm getForm() {
> return form;
> }
> public String getLocation() {
> return "view/conference/create.jsf";
> }
> }
> {code}
> {code:java|title=Test.java}
> @Test
> public void test() {
> ConferencePage page = goTo(ConferencePage.class);
> ConferenceForm = page.getForm();
> }
> {code}
> The only issue is that it is not sure on which deployment and with what browser should given Page operate.
--
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
12 years, 9 months