Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTamas Kiss2014-07-02 14:13:17 +0000
committerMarkus Tiede2014-07-02 14:22:11 +0000
commit257344502be93626bb5fccf55adf581b5e638de9 (patch)
treed781f4acd9bb642450d18ee25dc695d966ffc7e3
parent2c035a98b6fba16ec9b3e8db7e64da7d99840e95 (diff)
downloadorg.eclipse.jubula.core-257344502be93626bb5fccf55adf581b5e638de9.tar.gz
org.eclipse.jubula.core-257344502be93626bb5fccf55adf581b5e638de9.tar.xz
org.eclipse.jubula.core-257344502be93626bb5fccf55adf581b5e638de9.zip
Sprint task - Change method name to "Check Badge Value" and add operator to check badge value
Signed-off-by: Tamas Kiss <tamas.kiss@z-consulting.eu>
-rw-r--r--org.eclipse.jubula.toolkit.provider.mobile.ios/resources/xml/ComponentConfiguration.xml10
-rw-r--r--org.eclipse.jubula.toolkit.provider.mobile.ios/src/org/eclipse/jubula/toolkit/provider/mobile/ios/I18nStrings.properties4
2 files changed, 12 insertions, 2 deletions
diff --git a/org.eclipse.jubula.toolkit.provider.mobile.ios/resources/xml/ComponentConfiguration.xml b/org.eclipse.jubula.toolkit.provider.mobile.ios/resources/xml/ComponentConfiguration.xml
index 02e9f6a00..c200099b7 100644
--- a/org.eclipse.jubula.toolkit.provider.mobile.ios/resources/xml/ComponentConfiguration.xml
+++ b/org.eclipse.jubula.toolkit.provider.mobile.ios/resources/xml/ComponentConfiguration.xml
@@ -179,6 +179,16 @@
<param name="CompSystem.TabIndex">
<type>java.lang.Integer</type>
</param>
+ <param name="CompSystem.Operator">
+ <type>java.lang.String</type>
+ <defaultValue>equals</defaultValue>
+ <valueSet>
+ <element name="CompSystem.Equals" value="equals"/>
+ <element name="CompSystem.NotEquals" value="not equals"/>
+ <element name="CompSystem.MatchesRegExp" value="matches"/>
+ <element name="CompSystem.SimpleMatch" value="simple match"/>
+ </valueSet>
+ </param>
</action>
</toolkitComponent>
diff --git a/org.eclipse.jubula.toolkit.provider.mobile.ios/src/org/eclipse/jubula/toolkit/provider/mobile/ios/I18nStrings.properties b/org.eclipse.jubula.toolkit.provider.mobile.ios/src/org/eclipse/jubula/toolkit/provider/mobile/ios/I18nStrings.properties
index 96fc35545..68a4d730b 100644
--- a/org.eclipse.jubula.toolkit.provider.mobile.ios/src/org/eclipse/jubula/toolkit/provider/mobile/ios/I18nStrings.properties
+++ b/org.eclipse.jubula.toolkit.provider.mobile.ios/src/org/eclipse/jubula/toolkit/provider/mobile/ios/I18nStrings.properties
@@ -35,5 +35,5 @@ CompSystem.SelectValueInColumn=Select Entry by Value in Column
CompSystem.TapViewWithAccessibilityLabel=Tap View with Accessibility Label
CompSystem.Swipe=Swipe
CompSystem.Label=Label
-CompSystem.CheckBadgeValue=Check badge value
-CompSystem.TabIndex=Tab index \ No newline at end of file
+CompSystem.CheckBadgeValue=Check Badge Value
+CompSystem.TabIndex=Tab Index \ No newline at end of file

Back to the top