appium-webdriveragent 9.5.0 → 9.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [9.5.2](https://github.com/appium/WebDriverAgent/compare/v9.5.1...v9.5.2) (2025-04-19)
2
+
3
+ ### Bug Fixes
4
+
5
+ * Missing text in long text for get text/value ([#1007](https://github.com/appium/WebDriverAgent/issues/1007)) ([6603a0b](https://github.com/appium/WebDriverAgent/commit/6603a0ba384917d39389509958ccac03ad174610))
6
+
7
+ ## [9.5.1](https://github.com/appium/WebDriverAgent/compare/v9.5.0...v9.5.1) (2025-04-10)
8
+
9
+ ### Bug Fixes
10
+
11
+ * Make sure we don't store element snapshot in the cache ([#1001](https://github.com/appium/WebDriverAgent/issues/1001)) ([cfe052b](https://github.com/appium/WebDriverAgent/commit/cfe052bb3adb3f3b24d0a34f386c60cf1516b308))
12
+
1
13
  ## [9.5.0](https://github.com/appium/WebDriverAgent/compare/v9.4.1...v9.5.0) (2025-04-10)
2
14
 
3
15
  ### Features
@@ -30,6 +30,8 @@
30
30
  {
31
31
  BOOL inDepth = [name isEqualToString:FBStringify(XCUIElement, isWDAccessible)]
32
32
  || [name isEqualToString:FBStringify(XCUIElement, isWDAccessibilityContainer)]
33
+ // To retrice entire text https://github.com/appium/appium-xcuitest-driver/issues/2552
34
+ || [name isEqualToString:FBStringify(XCUIElement, wdValue)]
33
35
  || [name isEqualToString:FBStringify(XCUIElement, wdIndex)];
34
36
  return [self fb_takeSnapshot:inDepth];
35
37
  }
@@ -151,7 +151,8 @@
151
151
  {
152
152
  FBElementCache *elementCache = request.session.elementCache;
153
153
  XCUIElement *element = [elementCache elementForUUID:(NSString *)request.parameters[@"uuid"]];
154
- FBXCElementSnapshotWrapper *wrappedSnapshot = [FBXCElementSnapshotWrapper ensureWrapped:[element fb_takeSnapshot:NO]];
154
+ // 'fb_takeSnapshot:YES' is to retrice entire text https://github.com/appium/appium-xcuitest-driver/issues/2552
155
+ FBXCElementSnapshotWrapper *wrappedSnapshot = [FBXCElementSnapshotWrapper ensureWrapped:[element fb_takeSnapshot:YES]];
155
156
  id text = FBFirstNonEmptyValue(wrappedSnapshot.wdValue, wrappedSnapshot.wdLabel);
156
157
  return FBResponseWithObject(text ?: @"");
157
158
  }
@@ -269,6 +270,7 @@
269
270
  NSString *focusedUUID = [elementCache storeElement:(useNativeCachingStrategy
270
271
  ? focusedElement
271
272
  : [focusedElement fb_stableInstanceWithUid:focusedElement.fb_uid])];
273
+ focusedElement.lastSnapshot = nil;
272
274
  if (focusedUUID && [focusedUUID isEqualToString:(id)request.parameters[@"uuid"]]) {
273
275
  isFocused = YES;
274
276
  }
@@ -15,11 +15,11 @@
15
15
  <key>CFBundlePackageType</key>
16
16
  <string>FMWK</string>
17
17
  <key>CFBundleShortVersionString</key>
18
- <string>9.5.0</string>
18
+ <string>9.5.2</string>
19
19
  <key>CFBundleSignature</key>
20
20
  <string>????</string>
21
21
  <key>CFBundleVersion</key>
22
- <string>9.5.0</string>
22
+ <string>9.5.2</string>
23
23
  <key>NSPrincipalClass</key>
24
24
  <string/>
25
25
  </dict>
@@ -55,7 +55,9 @@ XCUIElement *maybeStable(XCUIElement *element)
55
55
  id<FBResponsePayload> FBResponseWithCachedElement(XCUIElement *element, FBElementCache *elementCache, BOOL compact)
56
56
  {
57
57
  [elementCache storeElement:maybeStable(element)];
58
- return FBResponseWithStatus([FBCommandStatus okWithValue:FBDictionaryResponseWithElement(element, compact)]);
58
+ NSDictionary *response = FBDictionaryResponseWithElement(element, compact);
59
+ element.lastSnapshot = nil;
60
+ return FBResponseWithStatus([FBCommandStatus okWithValue:response]);
59
61
  }
60
62
 
61
63
  id<FBResponsePayload> FBResponseWithCachedElements(NSArray<XCUIElement *> *elements, FBElementCache *elementCache, BOOL compact)
@@ -64,6 +66,7 @@ id<FBResponsePayload> FBResponseWithCachedElements(NSArray<XCUIElement *> *eleme
64
66
  for (XCUIElement *element in elements) {
65
67
  [elementCache storeElement:maybeStable(element)];
66
68
  [elementsResponse addObject:FBDictionaryResponseWithElement(element, compact)];
69
+ element.lastSnapshot = nil;
67
70
  }
68
71
  return FBResponseWithStatus([FBCommandStatus okWithValue:elementsResponse]);
69
72
  }
@@ -1,9 +1,10 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="nJd-IZ-bfU">
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23504" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="nJd-IZ-bfU">
3
3
  <device id="retina6_5" orientation="portrait" appearance="light"/>
4
4
  <dependencies>
5
5
  <deployment identifier="iOS"/>
6
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
6
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23506"/>
7
+ <capability name="System colors in document resources" minToolsVersion="11.0"/>
7
8
  <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
8
9
  </dependencies>
9
10
  <scenes>
@@ -19,7 +20,7 @@
19
20
  <rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
20
21
  <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
21
22
  <subviews>
22
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nbp-zX-Om1">
23
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nbp-zX-Om1">
23
24
  <rect key="frame" x="186.66666666666666" y="117" width="41" height="30"/>
24
25
  <constraints>
25
26
  <constraint firstAttribute="height" constant="30" id="GzF-4f-MaH"/>
@@ -29,7 +30,7 @@
29
30
  <segue destination="gK5-IX-eJx" kind="show" animates="NO" id="8RT-ON-yXm"/>
30
31
  </connections>
31
32
  </button>
32
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="YgP-SF-TkS">
33
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="YgP-SF-TkS">
33
34
  <rect key="frame" x="159.66666666666666" y="155" width="95" height="30"/>
34
35
  <constraints>
35
36
  <constraint firstAttribute="height" constant="30" id="wTu-YB-p22"/>
@@ -40,7 +41,7 @@
40
41
  <action selector="showAlert:" destination="BYZ-38-t0r" eventType="touchUpInside" id="FEN-VX-MMc"/>
41
42
  </connections>
42
43
  </button>
43
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="M2N-Yn-ytb">
44
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="M2N-Yn-ytb">
44
45
  <rect key="frame" x="173" y="193" width="68" height="30"/>
45
46
  <constraints>
46
47
  <constraint firstAttribute="height" constant="30" id="Sf6-pE-ROp"/>
@@ -50,7 +51,7 @@
50
51
  <segue destination="65L-2T-0zt" kind="show" animates="NO" id="7cJ-OE-YWn"/>
51
52
  </connections>
52
53
  </button>
53
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="S56-6U-3gG">
54
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="S56-6U-3gG">
54
55
  <rect key="frame" x="177" y="231" width="60" height="30"/>
55
56
  <constraints>
56
57
  <constraint firstAttribute="height" constant="30" id="7sH-TN-BNa"/>
@@ -66,7 +67,7 @@
66
67
  <nil key="textColor"/>
67
68
  <nil key="highlightedColor"/>
68
69
  </label>
69
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1Ht-AF-MGW">
70
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1Ht-AF-MGW">
70
71
  <rect key="frame" x="186" y="298" width="42" height="30"/>
71
72
  <state key="normal" title="Touch"/>
72
73
  <connections>
@@ -114,28 +115,28 @@
114
115
  <subviews>
115
116
  <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="C6B-Wo-jWm" customClass="TouchableView">
116
117
  <rect key="frame" x="16" y="96.000000000000028" width="382" height="356.66666666666674"/>
117
- <color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
118
+ <color key="backgroundColor" systemColor="systemBackgroundColor"/>
118
119
  <accessibility key="accessibilityConfiguration" identifier="touchableView"/>
119
120
  <constraints>
120
121
  <constraint firstAttribute="width" secondItem="C6B-Wo-jWm" secondAttribute="height" multiplier="288:269" id="LeW-u7-tWl"/>
121
122
  </constraints>
122
123
  </view>
123
124
  <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Taps" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IV8-Ak-Z8e">
124
- <rect key="frame" x="139" y="460.66666666666669" width="131" height="21"/>
125
+ <rect key="frame" x="139" y="458.66666666666669" width="131" height="21"/>
125
126
  <accessibility key="accessibilityConfiguration" identifier="numberOfTapsLabel"/>
126
127
  <fontDescription key="fontDescription" type="system" pointSize="17"/>
127
128
  <nil key="textColor"/>
128
129
  <nil key="highlightedColor"/>
129
130
  </label>
130
131
  <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Touches" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Q4X-EY-aSL">
131
- <rect key="frame" x="125" y="489.33333333333331" width="159" height="21"/>
132
+ <rect key="frame" x="125" y="487.33333333333331" width="159" height="21"/>
132
133
  <accessibility key="accessibilityConfiguration" identifier="numberOfTouchesLabel"/>
133
134
  <fontDescription key="fontDescription" type="system" pointSize="17"/>
134
135
  <nil key="textColor"/>
135
136
  <nil key="highlightedColor"/>
136
137
  </label>
137
138
  </subviews>
138
- <color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
139
+ <color key="backgroundColor" systemColor="systemBackgroundColor"/>
139
140
  <constraints>
140
141
  <constraint firstItem="C6B-Wo-jWm" firstAttribute="top" secondItem="gEY-Ha-hqz" secondAttribute="bottom" constant="8" id="1PW-tn-oTF"/>
141
142
  <constraint firstAttribute="trailing" secondItem="IV8-Ak-Z8e" secondAttribute="trailing" constant="144" id="5Tn-XG-5OD"/>
@@ -197,18 +198,19 @@
197
198
  <rect key="frame" x="161" y="324" width="39" height="37"/>
198
199
  <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
199
200
  </pageControl>
200
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="Text Field long text" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="LZF-72-rfb">
201
- <rect key="frame" x="20" y="497" width="374" height="329"/>
201
+ <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="LZF-72-rfb">
202
+ <rect key="frame" x="20" y="499" width="374" height="327"/>
203
+ <mutableString key="text">1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901</mutableString>
202
204
  <fontDescription key="fontDescription" type="system" pointSize="14"/>
203
205
  <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
204
206
  </textView>
205
207
  <datePicker contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" datePickerMode="dateAndTime" minuteInterval="1" style="wheels" translatesAutoresizingMaskIntoConstraints="NO" id="dxw-sJ-Dkr">
206
- <rect key="frame" x="20" y="363" width="374" height="126"/>
208
+ <rect key="frame" x="20" y="365" width="374" height="126"/>
207
209
  <constraints>
208
210
  <constraint firstAttribute="height" constant="126" id="QRU-5e-MQt"/>
209
211
  </constraints>
210
212
  </datePicker>
211
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Exq-MB-zeu">
213
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Exq-MB-zeu">
212
214
  <rect key="frame" x="103.66666666666667" y="201" width="46.000000000000014" height="30"/>
213
215
  <constraints>
214
216
  <constraint firstAttribute="height" constant="30" id="Otl-5O-2Nq"/>
@@ -250,7 +252,7 @@
250
252
  </constraints>
251
253
  </switch>
252
254
  <progressView opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="750" progress="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="w6h-ic-qpa">
253
- <rect key="frame" x="134" y="353" width="150" height="2"/>
255
+ <rect key="frame" x="134" y="353" width="150" height="4"/>
254
256
  <constraints>
255
257
  <constraint firstAttribute="width" constant="150" id="7Tf-hh-LKX"/>
256
258
  </constraints>
@@ -263,7 +265,7 @@
263
265
  </constraints>
264
266
  </stepper>
265
267
  <label opaque="NO" userInteractionEnabled="NO" alpha="0.0" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="alpha_invisible" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ucg-0s-c50">
266
- <rect key="frame" x="225" y="197" width="110" height="21"/>
268
+ <rect key="frame" x="224.33333333333334" y="197" width="111.66666666666666" height="21"/>
267
269
  <color key="backgroundColor" red="1" green="0.0" blue="0.041046944598614132" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
268
270
  <constraints>
269
271
  <constraint firstAttribute="height" constant="21" id="664-Z3-V7W"/>
@@ -273,7 +275,7 @@
273
275
  <nil key="highlightedColor"/>
274
276
  </label>
275
277
  <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="hidden_invisible" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vt6-b1-U0h">
276
- <rect key="frame" x="222.66666666666663" y="226" width="121" height="21"/>
278
+ <rect key="frame" x="221.66666666666666" y="226" width="122.66666666666666" height="21"/>
277
279
  <constraints>
278
280
  <constraint firstAttribute="height" constant="21" id="51j-sl-XYd"/>
279
281
  </constraints>
@@ -281,8 +283,8 @@
281
283
  <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
282
284
  <nil key="highlightedColor"/>
283
285
  </label>
284
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="GsS-jO-scK">
285
- <rect key="frame" x="174" y="248" width="101" height="30"/>
286
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="GsS-jO-scK">
287
+ <rect key="frame" x="174" y="248" width="103" height="30"/>
286
288
  <accessibility key="accessibilityConfiguration">
287
289
  <bool key="isElement" value="NO"/>
288
290
  </accessibility>
@@ -374,8 +376,8 @@
374
376
  <fontDescription key="fontDescription" type="system" pointSize="14"/>
375
377
  <textInputTraits key="textInputTraits"/>
376
378
  </textField>
377
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4VK-4B-FEF">
378
- <rect key="frame" x="149" y="194" width="115" height="30"/>
379
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4VK-4B-FEF">
380
+ <rect key="frame" x="149.66666666666666" y="194" width="113.99999999999997" height="30"/>
379
381
  <constraints>
380
382
  <constraint firstAttribute="height" constant="30" id="xsL-Fq-mly"/>
381
383
  </constraints>
@@ -384,7 +386,7 @@
384
386
  <action selector="createAppAlert:" destination="gK5-IX-eJx" eventType="touchUpInside" id="t44-BA-HSi"/>
385
387
  </connections>
386
388
  </button>
387
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OQt-5y-Tft">
389
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OQt-5y-Tft">
388
390
  <rect key="frame" x="124" y="232" width="166" height="30"/>
389
391
  <constraints>
390
392
  <constraint firstAttribute="height" constant="30" id="Y5y-Th-63a"/>
@@ -394,7 +396,7 @@
394
396
  <action selector="createNotificationAlert:" destination="gK5-IX-eJx" eventType="touchUpInside" id="haL-pV-hTV"/>
395
397
  </connections>
396
398
  </button>
397
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rG5-3k-LFe">
399
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rG5-3k-LFe">
398
400
  <rect key="frame" x="122" y="270" width="169" height="30"/>
399
401
  <constraints>
400
402
  <constraint firstAttribute="height" constant="30" id="im5-w3-Pgi"/>
@@ -404,7 +406,7 @@
404
406
  <action selector="createCameraRollAccessAlert:" destination="gK5-IX-eJx" eventType="touchUpInside" id="T8R-HK-sEe"/>
405
407
  </connections>
406
408
  </button>
407
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ntr-45-Ycd">
409
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ntr-45-Ycd">
408
410
  <rect key="frame" x="123" y="308" width="168" height="30"/>
409
411
  <constraints>
410
412
  <constraint firstAttribute="height" constant="30" id="4B7-LM-UwV"/>
@@ -414,7 +416,7 @@
414
416
  <action selector="createGPSAccessAlert:" destination="gK5-IX-eJx" eventType="touchUpInside" id="gcM-Ip-10b"/>
415
417
  </connections>
416
418
  </button>
417
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CZ1-7J-OGl">
419
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CZ1-7J-OGl">
418
420
  <rect key="frame" x="66.666666666666671" y="176" width="46" height="30"/>
419
421
  <accessibility key="accessibilityConfiguration" identifier="button"/>
420
422
  <constraints>
@@ -432,8 +434,8 @@
432
434
  <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
433
435
  <nil key="highlightedColor"/>
434
436
  </label>
435
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3Zk-wE-jwj">
436
- <rect key="frame" x="143.66666666666666" y="346" width="126.99999999999997" height="30"/>
437
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3Zk-wE-jwj">
438
+ <rect key="frame" x="144" y="346" width="126" height="30"/>
437
439
  <constraints>
438
440
  <constraint firstAttribute="height" constant="30" id="Mk4-bk-Y0L"/>
439
441
  </constraints>
@@ -442,7 +444,7 @@
442
444
  <action selector="createAppSheet:" destination="gK5-IX-eJx" eventType="touchUpInside" id="U6X-fw-xU2"/>
443
445
  </connections>
444
446
  </button>
445
- <button opaque="NO" userInteractionEnabled="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="D7g-22-s49">
447
+ <button opaque="NO" userInteractionEnabled="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="D7g-22-s49">
446
448
  <rect key="frame" x="116" y="384" width="182" height="30"/>
447
449
  <constraints>
448
450
  <constraint firstAttribute="height" constant="30" id="TzV-CY-64y"/>
@@ -490,7 +492,7 @@
490
492
  <rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
491
493
  <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
492
494
  <subviews>
493
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vYb-QB-vwU">
495
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vYb-QB-vwU">
494
496
  <rect key="frame" x="172.66666666666666" y="108" width="69" height="30"/>
495
497
  <constraints>
496
498
  <constraint firstAttribute="height" constant="30" id="ymh-D3-SCA"/>
@@ -500,7 +502,7 @@
500
502
  <segue destination="3ur-D9-8FT" kind="show" animates="NO" id="yJb-Fl-2fY"/>
501
503
  </connections>
502
504
  </button>
503
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FdB-fa-0bl">
505
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FdB-fa-0bl">
504
506
  <rect key="frame" x="171" y="146" width="72" height="30"/>
505
507
  <constraints>
506
508
  <constraint firstAttribute="height" constant="30" id="Xas-AZ-Nyw"/>
@@ -535,7 +537,7 @@
535
537
  <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
536
538
  <prototypes>
537
539
  <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="Cell" textLabel="2mC-E2-VxB" style="IBUITableViewCellStyleDefault" id="wCs-18-PFf">
538
- <rect key="frame" x="0.0" y="28" width="414" height="44"/>
540
+ <rect key="frame" x="0.0" y="50" width="414" height="44"/>
539
541
  <autoresizingMask key="autoresizingMask"/>
540
542
  <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="wCs-18-PFf" id="0KF-km-gbT">
541
543
  <rect key="frame" x="0.0" y="0.0" width="414" height="44"/>
@@ -607,4 +609,9 @@
607
609
  <point key="canvasLocation" x="2302" y="746"/>
608
610
  </scene>
609
611
  </scenes>
612
+ <resources>
613
+ <systemColor name="systemBackgroundColor">
614
+ <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
615
+ </systemColor>
616
+ </resources>
610
617
  </document>
@@ -190,7 +190,7 @@
190
190
  XCTAssertEqualObjects(element.wdType, @"XCUIElementTypeTextView");
191
191
  XCTAssertNil(element.wdName);
192
192
  XCTAssertNil(element.wdLabel);
193
- XCTAssertEqualObjects(element.wdValue, @"Text Field long text");
193
+ XCTAssertEqualObjects(element.wdValue, @"1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901");
194
194
  }
195
195
 
196
196
  @end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-webdriveragent",
3
- "version": "9.5.0",
3
+ "version": "9.5.2",
4
4
  "description": "Package bundling WebDriverAgent",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",