[
https://issues.jboss.org/browse/ARQGRA-228?page=com.atlassian.jira.plugin...
]
Lukáš Fryč edited comment on ARQGRA-228 at 11/23/12 5:18 AM:
-------------------------------------------------------------
*1) Attribute Matcher && 2) Attribute Access*
{code:java}
waitGui().until().element(...).attribute(...).contains(...);
waitGui().until().element(...).attribute(...).isPresent(...);
{code}
*3) Fail Message*
{code:java}
waitGui().until("Success Message").element(...).isPresent();
{code}
But both versions can be available.
*4) Negation and String Matcher*
{code:java}
waitGui().until().element(...).value().not().contains(...);
{code}
{{value()}} = shortcut for {{attribute(VALUE)}}
was (Author: lfryc):
*1) Attribute Matcher && 2) Attribute Access*
{code:java}
waitGui().until().element(...).attribute(...).contains(...);
waitGui().until().element(...).attribute(...).isPresent(...);
{code}
*3) Fail Message*
{code:java}
waitGui().until("Success Message").element(...).isPresent();
{code}
But both versions can be available.
*4) Negation and String Matcher*
{code:java}
waitGui().until().element(...).value().not().contains(...);
{code}
{{value()}} = shortcut for {{attribute(VALUE).value()}}
Waiting conditions improvements - string matchers, no-parameter
until()
-----------------------------------------------------------------------
Key: ARQGRA-228
URL:
https://issues.jboss.org/browse/ARQGRA-228
Project: Arquillian Graphene
Issue Type: Enhancement
Reporter: Lukáš Fryč
Assignee: Jan Papousek
Fix For: 2.0.0.Alpha3
Currently, we may write this code:
{code:java}
waitGui().until(element(autocompleteInput).textEquals("A"));
{code}
If we want to add condition for waiting for input's value, we would add
{{valueEquals}} method:
{code:java}
waitGui().until(element(autocompleteInput).valueEquals("A"));
{code}
But certainly, it would be best to use kind of value retrievers and their matchers with
following API:
{code:java}
waitGui().until(element(autocompleteInput).text().equalTo("A"));
waitGui().until(element(autocompleteInput).value().equalTo("A"));
waitGui().until(element(autocompleteInput).value().contains("A"));
waitGui().until(attribute(autocompleteInput, "color").equalTo("A"));
{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