diff options
| author | Tamas Kiss | 2014-05-28 11:36:57 +0000 |
|---|---|---|
| committer | Markus Tiede | 2014-05-28 13:16:00 +0000 |
| commit | 6bd5493fe446aafa0ac4a99704fd1d752c365ba4 (patch) | |
| tree | fc90753c4dada5bc32315048a02754e77de9fa24 | |
| parent | a6e3d7219ca1c43447edf152c962239c7db7f695 (diff) | |
| download | org.eclipse.jubula.core-6bd5493fe446aafa0ac4a99704fd1d752c365ba4.tar.gz org.eclipse.jubula.core-6bd5493fe446aafa0ac4a99704fd1d752c365ba4.tar.xz org.eclipse.jubula.core-6bd5493fe446aafa0ac4a99704fd1d752c365ba4.zip | |
Add check badge value method to UITabBar (https://jubula.atlassian.net/browse/JUB-409)
Signed-off-by: Tamas Kiss <tamas.kiss@z-consulting.eu>
2 files changed, 20 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 b8e3894f4..02e9f6a00 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 @@ -90,11 +90,13 @@ </param> </action> </concreteComponent> + <toolkitComponent type="ios.UILabel" visible="false"> <realizes>abstract.ios.TextVerifiable</realizes> <testerClass>com.bredexsw.jubula.rc.mobile.ios.impl.UITextVerifiableTester</testerClass> <componentClass name="ios.UILabel" /> </toolkitComponent> + <toolkitComponent type="ios.UITableViewCell" visible="false"> <realizes>abstract.ios.TextVerifiable</realizes> <testerClass>com.bredexsw.jubula.rc.mobile.ios.impl.UITextVerifiableTester</testerClass> @@ -106,6 +108,7 @@ <testerClass>com.bredexsw.jubula.rc.mobile.ios.impl.UITextVerifiableTester</testerClass> <componentClass name="ios.UINavigationItemView" /> </toolkitComponent> + <toolkitComponent type="ios.UITabBarButton" visible="false"> <realizes>abstract.ios.TextVerifiable</realizes> <testerClass>com.bredexsw.jubula.rc.mobile.ios.impl.UITextVerifiableTester</testerClass> @@ -163,15 +166,26 @@ <testerClass>com.bredexsw.jubula.rc.mobile.ios.impl.UITabComponentTester</testerClass> <componentClass name="ios.UISegmentedControl" /> </toolkitComponent> - <toolkitComponent type="ios.UITabBar" visible="false"> + + <toolkitComponent type="ios.UITabBar" visible="true"> <realizes>abstract.ios.TabComponent</realizes> <testerClass>com.bredexsw.jubula.rc.mobile.ios.impl.UITabComponentTester</testerClass> <componentClass name="ios.UITabBar" /> + <action name="CompSystem.CheckBadgeValue" changed="1.0"> + <method>rcCheckBadgeValue</method> + <param name="CompSystem.Text"> + <type>java.lang.String</type> + </param> + <param name="CompSystem.TabIndex"> + <type>java.lang.Integer</type> + </param> + </action> </toolkitComponent> <!-- Combo Box Controls --> <concreteComponent type="abstract.ios.Picker" visible="true"> <realizes>guidancer.concrete.ComboBox</realizes> + <action name="CompSystem.Swipe" changed="1.00"> <method>rcSwipe</method> <param name="CompSystem.Direction"> @@ -185,6 +199,7 @@ </valueSet> </param> </action> + <action name="CompSystem.VerifyContainsValueInColumn" changed="2.2"> <method>rcVerifyContainsValue</method> <param name="CompSystem.Text"> @@ -213,6 +228,7 @@ <defaultValue>1</defaultValue> </param> </action> + <action name="CompSystem.VerifySelectedIndexInColumn" changed="2.2"> <method>rcVerifySelectedIndex</method> <param name="CompSystem.OneIndex"> 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 01b15eb58..96fc35545 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 @@ -34,4 +34,6 @@ CompSystem.SelectIndexInColumn=Select Entry by Index in Column CompSystem.SelectValueInColumn=Select Entry by Value in Column CompSystem.TapViewWithAccessibilityLabel=Tap View with Accessibility Label CompSystem.Swipe=Swipe -CompSystem.Label=Label
\ No newline at end of file +CompSystem.Label=Label +CompSystem.CheckBadgeValue=Check badge value +CompSystem.TabIndex=Tab index
\ No newline at end of file |
