appium-webdriveragent 3.7.1 → 3.8.0
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/PrivateHeaders/.DS_Store +0 -0
- package/PrivateHeaders/XCTest/XCUIDevice.h +2 -1
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/elf.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/xcuserdata/elf.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +35 -0
- package/WebDriverAgent.xcodeproj/xcuserdata/{kazuaki.xcuserdatad → elf.xcuserdatad}/xcschemes/xcschememanagement.plist +23 -8
- package/WebDriverAgentLib/.DS_Store +0 -0
- package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m +1 -0
- package/WebDriverAgentLib/Categories/XCUIDevice+FBHelpers.h +22 -0
- package/WebDriverAgentLib/Categories/XCUIDevice+FBHelpers.m +12 -0
- package/WebDriverAgentLib/Commands/FBCustomCommands.m +17 -0
- package/WebDriverAgentLib/Utilities/FBXPath.m +19 -0
- package/WebDriverAgentLib/Vendor/.DS_Store +0 -0
- package/WebDriverAgentRunner/.DS_Store +0 -0
- package/WebDriverAgentRunner-Runner.app.zip +0 -0
- package/WebDriverAgentTests/IntegrationApp/Resources/.DS_Store +0 -0
- package/WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m +2 -2
- package/WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m +12 -0
- package/WebDriverAgentTests/UnitTests/FBXPathTests.m +6 -6
- package/package.json +1 -1
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/WorkspaceSettings.xcsettings +0 -20
- package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -810
|
Binary file
|
|
@@ -12,11 +12,12 @@
|
|
|
12
12
|
@property (readonly) id accessibilityInterface; // implements XCUIAccessibilityInterface
|
|
13
13
|
@property (readonly) id eventSynthesizer; // implements XCUIEventSynthesizing
|
|
14
14
|
@property(readonly) id screenDataSource; // @synthesize screenDataSource=_screenDataSource;
|
|
15
|
-
|
|
15
|
+
- (_Bool)performDeviceEvent:(id)arg1 error:(id *)arg2;
|
|
16
16
|
|
|
17
17
|
- (void)pressLockButton;
|
|
18
18
|
- (void)holdHomeButtonForDuration:(double)arg1;
|
|
19
19
|
- (void)_silentPressButton:(long long)arg1;
|
|
20
|
+
// Removed in Xcode 10.2
|
|
20
21
|
- (void)_dispatchEventWithPage:(unsigned int)arg1 usage:(unsigned int)arg2 duration:(double)arg3;
|
|
21
22
|
|
|
22
23
|
@end
|
|
Binary file
|
package/WebDriverAgent.xcodeproj/xcuserdata/elf.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Bucket
|
|
3
|
+
uuid = "2F0174F2-ED3F-4D11-9A17-7C590053D796"
|
|
4
|
+
type = "1"
|
|
5
|
+
version = "2.0">
|
|
6
|
+
<Breakpoints>
|
|
7
|
+
<BreakpointProxy
|
|
8
|
+
BreakpointExtensionID = "Xcode.Breakpoint.ExceptionBreakpoint">
|
|
9
|
+
<BreakpointContent
|
|
10
|
+
uuid = "471ECA8C-2C53-4C59-88DB-1C1CB3D61601"
|
|
11
|
+
shouldBeEnabled = "No"
|
|
12
|
+
ignoreCount = "0"
|
|
13
|
+
continueAfterRunningActions = "No"
|
|
14
|
+
breakpointStackSelectionBehavior = "1"
|
|
15
|
+
scope = "1"
|
|
16
|
+
stopOnStyle = "0">
|
|
17
|
+
</BreakpointContent>
|
|
18
|
+
</BreakpointProxy>
|
|
19
|
+
<BreakpointProxy
|
|
20
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
21
|
+
<BreakpointContent
|
|
22
|
+
uuid = "C2E06865-6A52-4686-9771-279AF13ABF8A"
|
|
23
|
+
shouldBeEnabled = "Yes"
|
|
24
|
+
ignoreCount = "0"
|
|
25
|
+
continueAfterRunningActions = "No"
|
|
26
|
+
filePath = "WebDriverAgentLib/Categories/XCUIElement+FBUtilities.m"
|
|
27
|
+
timestampString = "0"
|
|
28
|
+
startingColumnNumber = "9223372036854775807"
|
|
29
|
+
endingColumnNumber = "9223372036854775807"
|
|
30
|
+
startingLineNumber = "264"
|
|
31
|
+
endingLineNumber = "264">
|
|
32
|
+
</BreakpointContent>
|
|
33
|
+
</BreakpointProxy>
|
|
34
|
+
</Breakpoints>
|
|
35
|
+
</Bucket>
|
|
@@ -4,40 +4,55 @@
|
|
|
4
4
|
<dict>
|
|
5
5
|
<key>SchemeUserState</key>
|
|
6
6
|
<dict>
|
|
7
|
-
<key>IntegrationApp.
|
|
7
|
+
<key>IntegrationApp.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
<key>IntegrationTests_1.xcscheme_^#shared#^_</key>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>orderHint</key>
|
|
15
|
+
<integer>1</integer>
|
|
16
|
+
</dict>
|
|
17
|
+
<key>IntegrationTests_2.xcscheme_^#shared#^_</key>
|
|
18
|
+
<dict>
|
|
19
|
+
<key>orderHint</key>
|
|
20
|
+
<integer>2</integer>
|
|
21
|
+
</dict>
|
|
22
|
+
<key>IntegrationTests_3.xcscheme_^#shared#^_</key>
|
|
8
23
|
<dict>
|
|
9
24
|
<key>orderHint</key>
|
|
10
25
|
<integer>3</integer>
|
|
11
26
|
</dict>
|
|
12
|
-
<key>
|
|
27
|
+
<key>WebDriverAgentLib copy.xcscheme_^#shared#^_</key>
|
|
13
28
|
<dict>
|
|
14
29
|
<key>orderHint</key>
|
|
15
|
-
<integer>
|
|
30
|
+
<integer>9</integer>
|
|
16
31
|
</dict>
|
|
17
32
|
<key>WebDriverAgentLib.xcscheme_^#shared#^_</key>
|
|
18
33
|
<dict>
|
|
19
34
|
<key>orderHint</key>
|
|
20
|
-
<integer>
|
|
35
|
+
<integer>4</integer>
|
|
21
36
|
</dict>
|
|
22
37
|
<key>WebDriverAgentLib_tvOS.xcscheme_^#shared#^_</key>
|
|
23
38
|
<dict>
|
|
24
39
|
<key>orderHint</key>
|
|
25
|
-
<integer>
|
|
40
|
+
<integer>5</integer>
|
|
26
41
|
</dict>
|
|
27
42
|
<key>WebDriverAgentRunner-nodebug.xcscheme_^#shared#^_</key>
|
|
28
43
|
<dict>
|
|
29
44
|
<key>orderHint</key>
|
|
30
|
-
<integer>
|
|
45
|
+
<integer>7</integer>
|
|
31
46
|
</dict>
|
|
32
47
|
<key>WebDriverAgentRunner.xcscheme_^#shared#^_</key>
|
|
33
48
|
<dict>
|
|
34
49
|
<key>orderHint</key>
|
|
35
|
-
<integer>
|
|
50
|
+
<integer>6</integer>
|
|
36
51
|
</dict>
|
|
37
52
|
<key>WebDriverAgentRunner_tvOS.xcscheme_^#shared#^_</key>
|
|
38
53
|
<dict>
|
|
39
54
|
<key>orderHint</key>
|
|
40
|
-
<integer>
|
|
55
|
+
<integer>8</integer>
|
|
41
56
|
</dict>
|
|
42
57
|
</dict>
|
|
43
58
|
</dict>
|
|
Binary file
|
|
@@ -128,6 +128,7 @@ static NSString* const FBUnknownBundleId = @"unknown";
|
|
|
128
128
|
info[@"frame"] = NSStringFromCGRect(snapshot.wdFrame);
|
|
129
129
|
info[@"isEnabled"] = [@([snapshot isWDEnabled]) stringValue];
|
|
130
130
|
info[@"isVisible"] = [@([snapshot isWDVisible]) stringValue];
|
|
131
|
+
info[@"isAccessible"] = [@([snapshot isWDAccessible]) stringValue];
|
|
131
132
|
#if TARGET_OS_TV
|
|
132
133
|
info[@"isFocused"] = [@([snapshot isWDFocused]) stringValue];
|
|
133
134
|
#endif
|
|
@@ -91,6 +91,28 @@ NS_ASSUME_NONNULL_BEGIN
|
|
|
91
91
|
*/
|
|
92
92
|
- (BOOL)fb_activateSiriVoiceRecognitionWithText:(NSString *)text error:(NSError **)error;
|
|
93
93
|
|
|
94
|
+
/**
|
|
95
|
+
Eumlated triggering of the given low-level IOHID device event. The constants for possible events are defined
|
|
96
|
+
in https://unix.superglobalmegacorp.com/xnu/newsrc/iokit/IOKit/hidsystem/IOHIDUsageTables.h.html
|
|
97
|
+
Popular constants:
|
|
98
|
+
- kHIDPage_Consumer = 0x0C
|
|
99
|
+
- kHIDUsage_Csmr_VolumeIncrement = 0xE9 (Volume Up)
|
|
100
|
+
- kHIDUsage_Csmr_VolumeDecrement = 0xEA (Volume Down)
|
|
101
|
+
- kHIDUsage_Csmr_Menu = 0x40 (Home)
|
|
102
|
+
- kHIDUsage_Csmr_Power = 0x30 (Power)
|
|
103
|
+
- kHIDUsage_Csmr_Snapshot = 0x65 (Power + Home)
|
|
104
|
+
|
|
105
|
+
@param page The event page identifier
|
|
106
|
+
@param usage The event usage indentifier (usages are defined per-page)
|
|
107
|
+
@param duration The event duration in float seconds (XCTest uses 0.005 for a single press event)
|
|
108
|
+
@param error If there is an error, upon return contains an NSError object that describes the problem.
|
|
109
|
+
@return YES the event has successfully been triggered
|
|
110
|
+
*/
|
|
111
|
+
- (BOOL)fb_performIOHIDEventWithPage:(unsigned int)page
|
|
112
|
+
usage:(unsigned int)usage
|
|
113
|
+
duration:(NSTimeInterval)duration
|
|
114
|
+
error:(NSError **)error;
|
|
115
|
+
|
|
94
116
|
@end
|
|
95
117
|
|
|
96
118
|
NS_ASSUME_NONNULL_END
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
#import "FBScreenshot.h"
|
|
22
22
|
#import "FBXCodeCompatibility.h"
|
|
23
23
|
#import "XCUIDevice.h"
|
|
24
|
+
#import "XCDeviceEvent.h"
|
|
24
25
|
|
|
25
26
|
static const NSTimeInterval FBHomeButtonCoolOffTime = 1.;
|
|
26
27
|
static const NSTimeInterval FBScreenLockTimeout = 5.;
|
|
@@ -282,4 +283,15 @@ static bool fb_isLocked;
|
|
|
282
283
|
}
|
|
283
284
|
#endif
|
|
284
285
|
|
|
286
|
+
- (BOOL)fb_performIOHIDEventWithPage:(unsigned int)page
|
|
287
|
+
usage:(unsigned int)usage
|
|
288
|
+
duration:(NSTimeInterval)duration
|
|
289
|
+
error:(NSError **)error
|
|
290
|
+
{
|
|
291
|
+
XCDeviceEvent *event = [XCDeviceEvent deviceEventWithPage:page
|
|
292
|
+
usage:usage
|
|
293
|
+
duration:duration];
|
|
294
|
+
return [self performDeviceEvent:event error:error];
|
|
295
|
+
}
|
|
296
|
+
|
|
285
297
|
@end
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
[[FBRoute GET:@"/wda/batteryInfo"] respondWithTarget:self action:@selector(handleGetBatteryInfo:)],
|
|
57
57
|
#endif
|
|
58
58
|
[[FBRoute POST:@"/wda/pressButton"] respondWithTarget:self action:@selector(handlePressButtonCommand:)],
|
|
59
|
+
[[FBRoute POST:@"/wda/performIoHidEvent"] respondWithTarget:self action:@selector(handlePeformIOHIDEvent:)],
|
|
59
60
|
[[FBRoute POST:@"/wda/expectNotification"] respondWithTarget:self action:@selector(handleExpectNotification:)],
|
|
60
61
|
[[FBRoute POST:@"/wda/siri/activate"] respondWithTarget:self action:@selector(handleActivateSiri:)],
|
|
61
62
|
[[FBRoute POST:@"/wda/apps/launchUnattached"].withoutSession respondWithTarget:self action:@selector(handleLaunchUnattachedApp:)],
|
|
@@ -257,6 +258,22 @@
|
|
|
257
258
|
return FBResponseWithOK();
|
|
258
259
|
}
|
|
259
260
|
|
|
261
|
+
+ (id <FBResponsePayload>)handlePeformIOHIDEvent:(FBRouteRequest *)request
|
|
262
|
+
{
|
|
263
|
+
NSNumber *page = request.arguments[@"page"];
|
|
264
|
+
NSNumber *usage = request.arguments[@"usage"];
|
|
265
|
+
NSNumber *duration = request.arguments[@"duration"];
|
|
266
|
+
NSError *error;
|
|
267
|
+
if (![XCUIDevice.sharedDevice fb_performIOHIDEventWithPage:page.unsignedIntValue
|
|
268
|
+
usage:usage.unsignedIntValue
|
|
269
|
+
duration:duration.doubleValue
|
|
270
|
+
error:&error]) {
|
|
271
|
+
return FBResponseWithStatus([FBCommandStatus unknownErrorWithMessage:error.description
|
|
272
|
+
traceback:nil]);
|
|
273
|
+
}
|
|
274
|
+
return FBResponseWithOK();
|
|
275
|
+
}
|
|
276
|
+
|
|
260
277
|
+ (id <FBResponsePayload>)handleLaunchUnattachedApp:(FBRouteRequest *)request
|
|
261
278
|
{
|
|
262
279
|
NSString *bundle = (NSString *)request.arguments[@"bundleId"];
|
|
@@ -58,6 +58,10 @@
|
|
|
58
58
|
|
|
59
59
|
@end
|
|
60
60
|
|
|
61
|
+
@interface FBAccessibleAttribute : FBElementAttribute
|
|
62
|
+
|
|
63
|
+
@end
|
|
64
|
+
|
|
61
65
|
@interface FBDimensionAttribute : FBElementAttribute
|
|
62
66
|
|
|
63
67
|
@end
|
|
@@ -460,6 +464,7 @@ static NSString *const FBAbstractMethodInvocationException = @"AbstractMethodInv
|
|
|
460
464
|
FBLabelAttribute.class,
|
|
461
465
|
FBEnabledAttribute.class,
|
|
462
466
|
FBVisibleAttribute.class,
|
|
467
|
+
FBAccessibleAttribute.class,
|
|
463
468
|
#if TARGET_OS_TV
|
|
464
469
|
FBFocusedAttribute.class,
|
|
465
470
|
#endif
|
|
@@ -563,6 +568,20 @@ static NSString *const FBAbstractMethodInvocationException = @"AbstractMethodInv
|
|
|
563
568
|
|
|
564
569
|
@end
|
|
565
570
|
|
|
571
|
+
@implementation FBAccessibleAttribute
|
|
572
|
+
|
|
573
|
+
+ (NSString *)name
|
|
574
|
+
{
|
|
575
|
+
return @"accessible";
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
+ (NSString *)valueForElement:(id<FBElement>)element
|
|
579
|
+
{
|
|
580
|
+
return element.wdAccessible ? @"true" : @"false";
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
@end
|
|
584
|
+
|
|
566
585
|
#if TARGET_OS_TV
|
|
567
586
|
|
|
568
587
|
@implementation FBFocusedAttribute
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
XCElementSnapshot *snapshot = self.destinationSnapshot;
|
|
55
55
|
NSString *xmlStr = [FBXPath xmlStringWithRootElement:snapshot excludingAttributes:nil];
|
|
56
56
|
XCTAssertNotNil(xmlStr);
|
|
57
|
-
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" name=\"%@\" label=\"%@\" enabled=\"%@\" visible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" index=\"%lu\"/>\n", snapshot.wdType, snapshot.wdType, snapshot.wdName, snapshot.wdLabel, snapshot.wdEnabled ? @"true" : @"false", snapshot.wdVisible ? @"true" : @"false", [snapshot.wdRect[@"x"] stringValue], [snapshot.wdRect[@"y"] stringValue], [snapshot.wdRect[@"width"] stringValue], [snapshot.wdRect[@"height"] stringValue], snapshot.wdIndex];
|
|
57
|
+
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" name=\"%@\" label=\"%@\" enabled=\"%@\" visible=\"%@\" accessible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" index=\"%lu\"/>\n", snapshot.wdType, snapshot.wdType, snapshot.wdName, snapshot.wdLabel, snapshot.wdEnabled ? @"true" : @"false", snapshot.wdVisible ? @"true" : @"false", snapshot.wdAccessible ? @"true" : @"false", [snapshot.wdRect[@"x"] stringValue], [snapshot.wdRect[@"y"] stringValue], [snapshot.wdRect[@"width"] stringValue], [snapshot.wdRect[@"height"] stringValue], snapshot.wdIndex];
|
|
58
58
|
XCTAssertEqualObjects(xmlStr, expectedXml);
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
XCElementSnapshot *snapshot = self.destinationSnapshot;
|
|
64
64
|
NSString *xmlStr = [FBXPath xmlStringWithRootElement:snapshot excludingAttributes:@[@"visible", @"enabled", @"index", @"blabla"]];
|
|
65
65
|
XCTAssertNotNil(xmlStr);
|
|
66
|
-
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" name=\"%@\" label=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\"/>\n", snapshot.wdType, snapshot.wdType, snapshot.wdName, snapshot.wdLabel, [snapshot.wdRect[@"x"] stringValue], [snapshot.wdRect[@"y"] stringValue], [snapshot.wdRect[@"width"] stringValue], [snapshot.wdRect[@"height"] stringValue]];
|
|
66
|
+
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" name=\"%@\" label=\"%@\" accessible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\"/>\n", snapshot.wdType, snapshot.wdType, snapshot.wdName, snapshot.wdLabel, snapshot.wdAccessible ? @"true" : @"false", [snapshot.wdRect[@"x"] stringValue], [snapshot.wdRect[@"y"] stringValue], [snapshot.wdRect[@"width"] stringValue], [snapshot.wdRect[@"height"] stringValue]];
|
|
67
67
|
XCTAssertEqualObjects(xmlStr, expectedXml);
|
|
68
68
|
}
|
|
69
69
|
|
|
@@ -130,4 +130,16 @@
|
|
|
130
130
|
XCTAssertNil(error);
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
- (void)testLongPressHomeButton
|
|
134
|
+
{
|
|
135
|
+
NSError *error;
|
|
136
|
+
// kHIDPage_Consumer = 0x0C
|
|
137
|
+
// kHIDUsage_Csmr_Menu = 0x40
|
|
138
|
+
XCTAssertTrue([XCUIDevice.sharedDevice fb_performIOHIDEventWithPage:0x0C
|
|
139
|
+
usage:0x40
|
|
140
|
+
duration:1.0
|
|
141
|
+
error:&error]);
|
|
142
|
+
XCTAssertNil(error);
|
|
143
|
+
}
|
|
144
|
+
|
|
133
145
|
@end
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
NSString *resultXml = [self xmlStringWithElement:element
|
|
52
52
|
xpathQuery:nil
|
|
53
53
|
excludingAttributes:nil];
|
|
54
|
-
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" value=\"%@\" name=\"%@\" label=\"%@\" enabled=\"%@\" visible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" index=\"%lu\" private_indexPath=\"top\"/>\n",
|
|
55
|
-
element.wdType, element.wdType, element.wdValue, element.wdName, element.wdLabel, element.wdEnabled ? @"true" : @"false", element.wdVisible ? @"true" : @"false", element.wdRect[@"x"], element.wdRect[@"y"], element.wdRect[@"width"], element.wdRect[@"height"], element.wdIndex];
|
|
54
|
+
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" value=\"%@\" name=\"%@\" label=\"%@\" enabled=\"%@\" visible=\"%@\" accessible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" index=\"%lu\" private_indexPath=\"top\"/>\n",
|
|
55
|
+
element.wdType, element.wdType, element.wdValue, element.wdName, element.wdLabel, element.wdEnabled ? @"true" : @"false", element.wdVisible ? @"true" : @"false", element.wdAccessible ? @"true" : @"false", element.wdRect[@"x"], element.wdRect[@"y"], element.wdRect[@"width"], element.wdRect[@"height"], element.wdIndex];
|
|
56
56
|
XCTAssertTrue([resultXml isEqualToString: expectedXml]);
|
|
57
57
|
}
|
|
58
58
|
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
NSString *resultXml = [self xmlStringWithElement:element
|
|
63
63
|
xpathQuery:nil
|
|
64
64
|
excludingAttributes:@[@"type", @"visible", @"value", @"index"]];
|
|
65
|
-
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ name=\"%@\" label=\"%@\" enabled=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" private_indexPath=\"top\"/>\n",
|
|
66
|
-
element.wdType, element.wdName, element.wdLabel, element.wdEnabled ? @"true" : @"false", element.wdRect[@"x"], element.wdRect[@"y"], element.wdRect[@"width"], element.wdRect[@"height"]];
|
|
65
|
+
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ name=\"%@\" label=\"%@\" enabled=\"%@\" accessible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" private_indexPath=\"top\"/>\n",
|
|
66
|
+
element.wdType, element.wdName, element.wdLabel, element.wdEnabled ? @"true" : @"false", element.wdAccessible ? @"true" : @"false", element.wdRect[@"x"], element.wdRect[@"y"], element.wdRect[@"width"], element.wdRect[@"height"]];
|
|
67
67
|
XCTAssertEqualObjects(resultXml, expectedXml);
|
|
68
68
|
}
|
|
69
69
|
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
NSString *resultXml = [self xmlStringWithElement:element
|
|
74
74
|
xpathQuery:[NSString stringWithFormat:@"//%@[@*]", element.wdType]
|
|
75
75
|
excludingAttributes:@[@"visible"]];
|
|
76
|
-
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" value=\"%@\" name=\"%@\" label=\"%@\" enabled=\"%@\" visible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" index=\"%lu\" private_indexPath=\"top\"/>\n",
|
|
77
|
-
element.wdType, element.wdType, element.wdValue, element.wdName, element.wdLabel, element.wdEnabled ? @"true" : @"false", element.wdVisible ? @"true" : @"false", element.wdRect[@"x"], element.wdRect[@"y"], element.wdRect[@"width"], element.wdRect[@"height"], element.wdIndex];
|
|
76
|
+
NSString *expectedXml = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<%@ type=\"%@\" value=\"%@\" name=\"%@\" label=\"%@\" enabled=\"%@\" visible=\"%@\" accessible=\"%@\" x=\"%@\" y=\"%@\" width=\"%@\" height=\"%@\" index=\"%lu\" private_indexPath=\"top\"/>\n",
|
|
77
|
+
element.wdType, element.wdType, element.wdValue, element.wdName, element.wdLabel, element.wdEnabled ? @"true" : @"false", element.wdVisible ? @"true" : @"false", element.wdAccessible ? @"true" : @"false", element.wdRect[@"x"], element.wdRect[@"y"], element.wdRect[@"width"], element.wdRect[@"height"], element.wdIndex];
|
|
78
78
|
XCTAssertTrue([resultXml isEqualToString: expectedXml]);
|
|
79
79
|
}
|
|
80
80
|
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>BuildLocationStyle</key>
|
|
6
|
-
<string>UseAppPreferences</string>
|
|
7
|
-
<key>CustomBuildLocationType</key>
|
|
8
|
-
<string>RelativeToDerivedData</string>
|
|
9
|
-
<key>DerivedDataLocationStyle</key>
|
|
10
|
-
<string>Default</string>
|
|
11
|
-
<key>EnabledFullIndexStoreVisibility</key>
|
|
12
|
-
<false/>
|
|
13
|
-
<key>IssueFilterStyle</key>
|
|
14
|
-
<string>ShowActiveSchemeOnly</string>
|
|
15
|
-
<key>LiveSourceIssuesEnabled</key>
|
|
16
|
-
<true/>
|
|
17
|
-
<key>ShowSharedSchemesAutomaticallyEnabled</key>
|
|
18
|
-
<true/>
|
|
19
|
-
</dict>
|
|
20
|
-
</plist>
|
package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
DELETED
|
@@ -1,810 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Bucket
|
|
3
|
-
uuid = "85B8A7BB-AF39-4AA4-A91B-3E091377E49F"
|
|
4
|
-
type = "1"
|
|
5
|
-
version = "2.0">
|
|
6
|
-
<Breakpoints>
|
|
7
|
-
<BreakpointProxy
|
|
8
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
9
|
-
<BreakpointContent
|
|
10
|
-
uuid = "A9F66173-9518-449B-9BB0-00CC4F22A3E0"
|
|
11
|
-
shouldBeEnabled = "No"
|
|
12
|
-
ignoreCount = "0"
|
|
13
|
-
continueAfterRunningActions = "No"
|
|
14
|
-
filePath = "WebDriverAgentLib/Utilities/FBXPath.m"
|
|
15
|
-
timestampString = "551537374.305424"
|
|
16
|
-
startingColumnNumber = "9223372036854775807"
|
|
17
|
-
endingColumnNumber = "9223372036854775807"
|
|
18
|
-
startingLineNumber = "320"
|
|
19
|
-
endingLineNumber = "320"
|
|
20
|
-
landmarkName = "+recordElementAttributes:forElement:indexPath:includedAttributes:"
|
|
21
|
-
landmarkType = "7">
|
|
22
|
-
</BreakpointContent>
|
|
23
|
-
</BreakpointProxy>
|
|
24
|
-
<BreakpointProxy
|
|
25
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
26
|
-
<BreakpointContent
|
|
27
|
-
uuid = "A00A53EE-97FC-41AA-822E-EB5C91B67A04"
|
|
28
|
-
shouldBeEnabled = "No"
|
|
29
|
-
ignoreCount = "0"
|
|
30
|
-
continueAfterRunningActions = "No"
|
|
31
|
-
filePath = "WebDriverAgentLib/FBApplication.m"
|
|
32
|
-
timestampString = "573535990.0440609"
|
|
33
|
-
startingColumnNumber = "9223372036854775807"
|
|
34
|
-
endingColumnNumber = "9223372036854775807"
|
|
35
|
-
startingLineNumber = "81"
|
|
36
|
-
endingLineNumber = "81"
|
|
37
|
-
landmarkName = "+fb_activeApplicationWithDefaultBundleId:"
|
|
38
|
-
landmarkType = "7">
|
|
39
|
-
</BreakpointContent>
|
|
40
|
-
</BreakpointProxy>
|
|
41
|
-
<BreakpointProxy
|
|
42
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
43
|
-
<BreakpointContent
|
|
44
|
-
uuid = "FD03C36B-901E-4F06-A532-730E33954070"
|
|
45
|
-
shouldBeEnabled = "No"
|
|
46
|
-
ignoreCount = "0"
|
|
47
|
-
continueAfterRunningActions = "No"
|
|
48
|
-
filePath = "WebDriverAgentLib/FBApplication.m"
|
|
49
|
-
timestampString = "573535990.04477"
|
|
50
|
-
startingColumnNumber = "9223372036854775807"
|
|
51
|
-
endingColumnNumber = "9223372036854775807"
|
|
52
|
-
startingLineNumber = "92"
|
|
53
|
-
endingLineNumber = "92"
|
|
54
|
-
landmarkName = "+fb_activeApplicationWithDefaultBundleId:"
|
|
55
|
-
landmarkType = "7">
|
|
56
|
-
</BreakpointContent>
|
|
57
|
-
</BreakpointProxy>
|
|
58
|
-
<BreakpointProxy
|
|
59
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
60
|
-
<BreakpointContent
|
|
61
|
-
uuid = "34E69244-7E26-461D-87BF-4F8DAB4CBB53"
|
|
62
|
-
shouldBeEnabled = "No"
|
|
63
|
-
ignoreCount = "0"
|
|
64
|
-
continueAfterRunningActions = "No"
|
|
65
|
-
filePath = "WebDriverAgentLib/Commands/FBSessionCommands.m"
|
|
66
|
-
timestampString = "573543236.2431999"
|
|
67
|
-
startingColumnNumber = "9223372036854775807"
|
|
68
|
-
endingColumnNumber = "9223372036854775807"
|
|
69
|
-
startingLineNumber = "76"
|
|
70
|
-
endingLineNumber = "76"
|
|
71
|
-
landmarkName = "+handleCreateSession:"
|
|
72
|
-
landmarkType = "7">
|
|
73
|
-
</BreakpointContent>
|
|
74
|
-
</BreakpointProxy>
|
|
75
|
-
<BreakpointProxy
|
|
76
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
77
|
-
<BreakpointContent
|
|
78
|
-
uuid = "C8A7A71C-9244-471E-AD56-4DD888F82EEE"
|
|
79
|
-
shouldBeEnabled = "No"
|
|
80
|
-
ignoreCount = "0"
|
|
81
|
-
continueAfterRunningActions = "No"
|
|
82
|
-
filePath = "WebDriverAgentLib/Commands/FBSessionCommands.m"
|
|
83
|
-
timestampString = "573543296.7784981"
|
|
84
|
-
startingColumnNumber = "9223372036854775807"
|
|
85
|
-
endingColumnNumber = "9223372036854775807"
|
|
86
|
-
startingLineNumber = "78"
|
|
87
|
-
endingLineNumber = "78"
|
|
88
|
-
landmarkName = "+handleCreateSession:"
|
|
89
|
-
landmarkType = "7">
|
|
90
|
-
</BreakpointContent>
|
|
91
|
-
</BreakpointProxy>
|
|
92
|
-
<BreakpointProxy
|
|
93
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
94
|
-
<BreakpointContent
|
|
95
|
-
uuid = "FCE5B435-6417-4C17-A2A8-BA1BD762528A"
|
|
96
|
-
shouldBeEnabled = "No"
|
|
97
|
-
ignoreCount = "0"
|
|
98
|
-
continueAfterRunningActions = "No"
|
|
99
|
-
filePath = "WebDriverAgentLib/Utilities/FBXCAXClientProxy.m"
|
|
100
|
-
timestampString = "573546169.498659"
|
|
101
|
-
startingColumnNumber = "9223372036854775807"
|
|
102
|
-
endingColumnNumber = "9223372036854775807"
|
|
103
|
-
startingLineNumber = "77"
|
|
104
|
-
endingLineNumber = "77"
|
|
105
|
-
landmarkName = "+sharedClient"
|
|
106
|
-
landmarkType = "7">
|
|
107
|
-
</BreakpointContent>
|
|
108
|
-
</BreakpointProxy>
|
|
109
|
-
<BreakpointProxy
|
|
110
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
111
|
-
<BreakpointContent
|
|
112
|
-
uuid = "3420D952-E1B0-4A66-A172-A4759B1A35D2"
|
|
113
|
-
shouldBeEnabled = "No"
|
|
114
|
-
ignoreCount = "0"
|
|
115
|
-
continueAfterRunningActions = "No"
|
|
116
|
-
filePath = "WebDriverAgentLib/Utilities/FBXCAXClientProxy.m"
|
|
117
|
-
timestampString = "573546212.0884579"
|
|
118
|
-
startingColumnNumber = "9223372036854775807"
|
|
119
|
-
endingColumnNumber = "9223372036854775807"
|
|
120
|
-
startingLineNumber = "75"
|
|
121
|
-
endingLineNumber = "75"
|
|
122
|
-
landmarkName = "+sharedClient"
|
|
123
|
-
landmarkType = "7">
|
|
124
|
-
</BreakpointContent>
|
|
125
|
-
</BreakpointProxy>
|
|
126
|
-
<BreakpointProxy
|
|
127
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
128
|
-
<BreakpointContent
|
|
129
|
-
uuid = "C4AE05AB-F253-40C1-939D-0B505182E5F3"
|
|
130
|
-
shouldBeEnabled = "No"
|
|
131
|
-
ignoreCount = "0"
|
|
132
|
-
continueAfterRunningActions = "No"
|
|
133
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
134
|
-
timestampString = "588012389.766982"
|
|
135
|
-
startingColumnNumber = "9223372036854775807"
|
|
136
|
-
endingColumnNumber = "9223372036854775807"
|
|
137
|
-
startingLineNumber = "297"
|
|
138
|
-
endingLineNumber = "297"
|
|
139
|
-
landmarkName = "+handleGetLocation:"
|
|
140
|
-
landmarkType = "7">
|
|
141
|
-
</BreakpointContent>
|
|
142
|
-
</BreakpointProxy>
|
|
143
|
-
<BreakpointProxy
|
|
144
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
145
|
-
<BreakpointContent
|
|
146
|
-
uuid = "114A29B1-DA4E-45BA-9824-69186562AAD6"
|
|
147
|
-
shouldBeEnabled = "No"
|
|
148
|
-
ignoreCount = "0"
|
|
149
|
-
continueAfterRunningActions = "No"
|
|
150
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
151
|
-
timestampString = "588012389.767392"
|
|
152
|
-
startingColumnNumber = "9223372036854775807"
|
|
153
|
-
endingColumnNumber = "9223372036854775807"
|
|
154
|
-
startingLineNumber = "291"
|
|
155
|
-
endingLineNumber = "291"
|
|
156
|
-
landmarkName = "FBCustomCommands"
|
|
157
|
-
landmarkType = "3">
|
|
158
|
-
</BreakpointContent>
|
|
159
|
-
</BreakpointProxy>
|
|
160
|
-
<BreakpointProxy
|
|
161
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
162
|
-
<BreakpointContent
|
|
163
|
-
uuid = "F50BECF0-3136-4D26-8C2C-097CEF4B035C"
|
|
164
|
-
shouldBeEnabled = "No"
|
|
165
|
-
ignoreCount = "0"
|
|
166
|
-
continueAfterRunningActions = "No"
|
|
167
|
-
filePath = "WebDriverAgentLib/Utilities/FBFailureProofTestCase.m"
|
|
168
|
-
timestampString = "0"
|
|
169
|
-
startingColumnNumber = "9223372036854775807"
|
|
170
|
-
endingColumnNumber = "9223372036854775807"
|
|
171
|
-
startingLineNumber = "32"
|
|
172
|
-
endingLineNumber = "32"
|
|
173
|
-
landmarkName = "-setUp"
|
|
174
|
-
landmarkType = "7">
|
|
175
|
-
</BreakpointContent>
|
|
176
|
-
</BreakpointProxy>
|
|
177
|
-
<BreakpointProxy
|
|
178
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
179
|
-
<BreakpointContent
|
|
180
|
-
uuid = "F84F010B-9113-43FC-9F98-73BC11C51AD7"
|
|
181
|
-
shouldBeEnabled = "No"
|
|
182
|
-
ignoreCount = "0"
|
|
183
|
-
continueAfterRunningActions = "No"
|
|
184
|
-
filePath = "WebDriverAgentLib/Utilities/FBFailureProofTestCase.m"
|
|
185
|
-
timestampString = "0"
|
|
186
|
-
startingColumnNumber = "9223372036854775807"
|
|
187
|
-
endingColumnNumber = "9223372036854775807"
|
|
188
|
-
startingLineNumber = "27"
|
|
189
|
-
endingLineNumber = "27"
|
|
190
|
-
landmarkName = "-setUp"
|
|
191
|
-
landmarkType = "7">
|
|
192
|
-
</BreakpointContent>
|
|
193
|
-
</BreakpointProxy>
|
|
194
|
-
<BreakpointProxy
|
|
195
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
196
|
-
<BreakpointContent
|
|
197
|
-
uuid = "6E82A111-4A3C-45AE-92E5-F0AEF268A0C6"
|
|
198
|
-
shouldBeEnabled = "No"
|
|
199
|
-
ignoreCount = "0"
|
|
200
|
-
continueAfterRunningActions = "No"
|
|
201
|
-
filePath = "WebDriverAgentLib/Utilities/FBFailureProofTestCase.m"
|
|
202
|
-
timestampString = "0"
|
|
203
|
-
startingColumnNumber = "9223372036854775807"
|
|
204
|
-
endingColumnNumber = "9223372036854775807"
|
|
205
|
-
startingLineNumber = "28"
|
|
206
|
-
endingLineNumber = "28"
|
|
207
|
-
landmarkName = "-setUp"
|
|
208
|
-
landmarkType = "7">
|
|
209
|
-
</BreakpointContent>
|
|
210
|
-
</BreakpointProxy>
|
|
211
|
-
<BreakpointProxy
|
|
212
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
213
|
-
<BreakpointContent
|
|
214
|
-
uuid = "51F52575-D72E-4854-94D5-70990AABC252"
|
|
215
|
-
shouldBeEnabled = "Yes"
|
|
216
|
-
ignoreCount = "0"
|
|
217
|
-
continueAfterRunningActions = "No"
|
|
218
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
219
|
-
timestampString = "0"
|
|
220
|
-
startingColumnNumber = "9223372036854775807"
|
|
221
|
-
endingColumnNumber = "9223372036854775807"
|
|
222
|
-
startingLineNumber = "76"
|
|
223
|
-
endingLineNumber = "76"
|
|
224
|
-
landmarkName = "+handleHomescreenCommand:"
|
|
225
|
-
landmarkType = "7">
|
|
226
|
-
</BreakpointContent>
|
|
227
|
-
</BreakpointProxy>
|
|
228
|
-
<BreakpointProxy
|
|
229
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
230
|
-
<BreakpointContent
|
|
231
|
-
uuid = "E107AEAC-6A21-4066-BDB8-3BBFB6EEB81E"
|
|
232
|
-
shouldBeEnabled = "No"
|
|
233
|
-
ignoreCount = "0"
|
|
234
|
-
continueAfterRunningActions = "No"
|
|
235
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
236
|
-
timestampString = "0"
|
|
237
|
-
startingColumnNumber = "9223372036854775807"
|
|
238
|
-
endingColumnNumber = "9223372036854775807"
|
|
239
|
-
startingLineNumber = "75"
|
|
240
|
-
endingLineNumber = "75"
|
|
241
|
-
landmarkName = "+handleHomescreenCommand:"
|
|
242
|
-
landmarkType = "7">
|
|
243
|
-
</BreakpointContent>
|
|
244
|
-
</BreakpointProxy>
|
|
245
|
-
<BreakpointProxy
|
|
246
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
247
|
-
<BreakpointContent
|
|
248
|
-
uuid = "9431A7C9-52FF-4879-A301-CCDDF64B7AF3"
|
|
249
|
-
shouldBeEnabled = "Yes"
|
|
250
|
-
ignoreCount = "0"
|
|
251
|
-
continueAfterRunningActions = "No"
|
|
252
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
253
|
-
timestampString = "0"
|
|
254
|
-
startingColumnNumber = "9223372036854775807"
|
|
255
|
-
endingColumnNumber = "9223372036854775807"
|
|
256
|
-
startingLineNumber = "77"
|
|
257
|
-
endingLineNumber = "77"
|
|
258
|
-
landmarkName = "+handleHomescreenCommand:"
|
|
259
|
-
landmarkType = "7">
|
|
260
|
-
</BreakpointContent>
|
|
261
|
-
</BreakpointProxy>
|
|
262
|
-
<BreakpointProxy
|
|
263
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
264
|
-
<BreakpointContent
|
|
265
|
-
uuid = "65E2A037-FDDD-4F25-8895-B989584BA514"
|
|
266
|
-
shouldBeEnabled = "Yes"
|
|
267
|
-
ignoreCount = "0"
|
|
268
|
-
continueAfterRunningActions = "No"
|
|
269
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
270
|
-
timestampString = "0"
|
|
271
|
-
startingColumnNumber = "9223372036854775807"
|
|
272
|
-
endingColumnNumber = "9223372036854775807"
|
|
273
|
-
startingLineNumber = "80"
|
|
274
|
-
endingLineNumber = "80"
|
|
275
|
-
landmarkName = "+handleHomescreenCommand:"
|
|
276
|
-
landmarkType = "7">
|
|
277
|
-
</BreakpointContent>
|
|
278
|
-
</BreakpointProxy>
|
|
279
|
-
<BreakpointProxy
|
|
280
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
281
|
-
<BreakpointContent
|
|
282
|
-
uuid = "C8563B5D-FA15-421E-BD78-3E692392F6A6"
|
|
283
|
-
shouldBeEnabled = "No"
|
|
284
|
-
ignoreCount = "0"
|
|
285
|
-
continueAfterRunningActions = "No"
|
|
286
|
-
filePath = "WebDriverAgentLib/FBSpringboardApplication.m"
|
|
287
|
-
timestampString = "0"
|
|
288
|
-
startingColumnNumber = "9223372036854775807"
|
|
289
|
-
endingColumnNumber = "9223372036854775807"
|
|
290
|
-
startingLineNumber = "37"
|
|
291
|
-
endingLineNumber = "37"
|
|
292
|
-
landmarkName = "-fb_waitUntilApplicationBoardIsVisible:"
|
|
293
|
-
landmarkType = "7">
|
|
294
|
-
</BreakpointContent>
|
|
295
|
-
</BreakpointProxy>
|
|
296
|
-
<BreakpointProxy
|
|
297
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
298
|
-
<BreakpointContent
|
|
299
|
-
uuid = "C175DF91-A5D2-41BE-AD84-CB6BD3D377D4"
|
|
300
|
-
shouldBeEnabled = "No"
|
|
301
|
-
ignoreCount = "0"
|
|
302
|
-
continueAfterRunningActions = "No"
|
|
303
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
304
|
-
timestampString = "0"
|
|
305
|
-
startingColumnNumber = "9223372036854775807"
|
|
306
|
-
endingColumnNumber = "9223372036854775807"
|
|
307
|
-
startingLineNumber = "41"
|
|
308
|
-
endingLineNumber = "41"
|
|
309
|
-
landmarkName = "+routes"
|
|
310
|
-
landmarkType = "7">
|
|
311
|
-
</BreakpointContent>
|
|
312
|
-
</BreakpointProxy>
|
|
313
|
-
<BreakpointProxy
|
|
314
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
315
|
-
<BreakpointContent
|
|
316
|
-
uuid = "8A2CB0B1-904C-4972-836D-4B05DABFA579"
|
|
317
|
-
shouldBeEnabled = "No"
|
|
318
|
-
ignoreCount = "0"
|
|
319
|
-
continueAfterRunningActions = "No"
|
|
320
|
-
filePath = "WebDriverAgentLib/Utilities/FBXCTestDaemonsProxy.m"
|
|
321
|
-
timestampString = "0"
|
|
322
|
-
startingColumnNumber = "9223372036854775807"
|
|
323
|
-
endingColumnNumber = "9223372036854775807"
|
|
324
|
-
startingLineNumber = "55"
|
|
325
|
-
endingLineNumber = "55"
|
|
326
|
-
landmarkName = "+retrieveTestRunnerProxy"
|
|
327
|
-
landmarkType = "7">
|
|
328
|
-
</BreakpointContent>
|
|
329
|
-
</BreakpointProxy>
|
|
330
|
-
<BreakpointProxy
|
|
331
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
332
|
-
<BreakpointContent
|
|
333
|
-
uuid = "8606C9F6-8A67-4DC9-B72B-BADEE1ECA185"
|
|
334
|
-
shouldBeEnabled = "No"
|
|
335
|
-
ignoreCount = "0"
|
|
336
|
-
continueAfterRunningActions = "No"
|
|
337
|
-
filePath = "WebDriverAgentLib/Utilities/FBConfiguration.m"
|
|
338
|
-
startingColumnNumber = "9223372036854775807"
|
|
339
|
-
endingColumnNumber = "9223372036854775807"
|
|
340
|
-
startingLineNumber = "534"
|
|
341
|
-
endingLineNumber = "534"
|
|
342
|
-
landmarkName = "+setReduceMotionEnabled:"
|
|
343
|
-
landmarkType = "7">
|
|
344
|
-
</BreakpointContent>
|
|
345
|
-
</BreakpointProxy>
|
|
346
|
-
<BreakpointProxy
|
|
347
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
348
|
-
<BreakpointContent
|
|
349
|
-
uuid = "3130B9D9-7754-4F1C-A9BA-9EE059D9550A"
|
|
350
|
-
shouldBeEnabled = "No"
|
|
351
|
-
ignoreCount = "0"
|
|
352
|
-
continueAfterRunningActions = "No"
|
|
353
|
-
filePath = "WebDriverAgentLib/Utilities/FBConfiguration.m"
|
|
354
|
-
startingColumnNumber = "9223372036854775807"
|
|
355
|
-
endingColumnNumber = "9223372036854775807"
|
|
356
|
-
startingLineNumber = "535"
|
|
357
|
-
endingLineNumber = "535"
|
|
358
|
-
landmarkName = "+setReduceMotionEnabled:"
|
|
359
|
-
landmarkType = "7">
|
|
360
|
-
</BreakpointContent>
|
|
361
|
-
</BreakpointProxy>
|
|
362
|
-
<BreakpointProxy
|
|
363
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
364
|
-
<BreakpointContent
|
|
365
|
-
uuid = "442DC620-432E-4C04-9375-E8DCA9C5B271"
|
|
366
|
-
shouldBeEnabled = "No"
|
|
367
|
-
ignoreCount = "0"
|
|
368
|
-
continueAfterRunningActions = "No"
|
|
369
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
370
|
-
startingColumnNumber = "9223372036854775807"
|
|
371
|
-
endingColumnNumber = "9223372036854775807"
|
|
372
|
-
startingLineNumber = "340"
|
|
373
|
-
endingLineNumber = "340"
|
|
374
|
-
landmarkName = "+handleExpectNotification:"
|
|
375
|
-
landmarkType = "7">
|
|
376
|
-
</BreakpointContent>
|
|
377
|
-
</BreakpointProxy>
|
|
378
|
-
<BreakpointProxy
|
|
379
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
380
|
-
<BreakpointContent
|
|
381
|
-
uuid = "94AB7150-F82A-428D-8441-F24A47115E32"
|
|
382
|
-
shouldBeEnabled = "No"
|
|
383
|
-
ignoreCount = "0"
|
|
384
|
-
continueAfterRunningActions = "No"
|
|
385
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreen.m"
|
|
386
|
-
startingColumnNumber = "9223372036854775807"
|
|
387
|
-
endingColumnNumber = "9223372036854775807"
|
|
388
|
-
startingLineNumber = "34"
|
|
389
|
-
endingLineNumber = "34"
|
|
390
|
-
landmarkName = "+statusBarSizeForApplication:"
|
|
391
|
-
landmarkType = "7">
|
|
392
|
-
</BreakpointContent>
|
|
393
|
-
</BreakpointProxy>
|
|
394
|
-
<BreakpointProxy
|
|
395
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
396
|
-
<BreakpointContent
|
|
397
|
-
uuid = "17535DC3-8BF3-4F78-978C-3B78CCF9CDA3"
|
|
398
|
-
shouldBeEnabled = "No"
|
|
399
|
-
ignoreCount = "0"
|
|
400
|
-
continueAfterRunningActions = "No"
|
|
401
|
-
filePath = "WebDriverAgentLib/Commands/FBSessionCommands.m"
|
|
402
|
-
startingColumnNumber = "9223372036854775807"
|
|
403
|
-
endingColumnNumber = "9223372036854775807"
|
|
404
|
-
startingLineNumber = "68"
|
|
405
|
-
endingLineNumber = "68"
|
|
406
|
-
landmarkName = "+handleOpenURL:"
|
|
407
|
-
landmarkType = "7">
|
|
408
|
-
</BreakpointContent>
|
|
409
|
-
</BreakpointProxy>
|
|
410
|
-
<BreakpointProxy
|
|
411
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
412
|
-
<BreakpointContent
|
|
413
|
-
uuid = "30F9F989-56E7-450B-94E1-6C6D5D6FC00C"
|
|
414
|
-
shouldBeEnabled = "No"
|
|
415
|
-
ignoreCount = "0"
|
|
416
|
-
continueAfterRunningActions = "No"
|
|
417
|
-
filePath = "WebDriverAgentLib/Commands/FBSessionCommands.m"
|
|
418
|
-
startingColumnNumber = "9223372036854775807"
|
|
419
|
-
endingColumnNumber = "9223372036854775807"
|
|
420
|
-
startingLineNumber = "64"
|
|
421
|
-
endingLineNumber = "64"
|
|
422
|
-
landmarkName = "+handleOpenURL:"
|
|
423
|
-
landmarkType = "7">
|
|
424
|
-
</BreakpointContent>
|
|
425
|
-
</BreakpointProxy>
|
|
426
|
-
<BreakpointProxy
|
|
427
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
428
|
-
<BreakpointContent
|
|
429
|
-
uuid = "296814BD-33BE-4F33-8C18-B4642F085641"
|
|
430
|
-
shouldBeEnabled = "No"
|
|
431
|
-
ignoreCount = "0"
|
|
432
|
-
continueAfterRunningActions = "No"
|
|
433
|
-
filePath = "WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m"
|
|
434
|
-
startingColumnNumber = "9223372036854775807"
|
|
435
|
-
endingColumnNumber = "9223372036854775807"
|
|
436
|
-
startingLineNumber = "31"
|
|
437
|
-
endingLineNumber = "31"
|
|
438
|
-
landmarkName = "swizzledWaitForQuiescenceIncludingAnimationsIdle(self, includingAnimations)"
|
|
439
|
-
landmarkType = "9">
|
|
440
|
-
</BreakpointContent>
|
|
441
|
-
</BreakpointProxy>
|
|
442
|
-
<BreakpointProxy
|
|
443
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
444
|
-
<BreakpointContent
|
|
445
|
-
uuid = "C1E501CA-8378-47ED-9C80-6D7B5A76C3E5"
|
|
446
|
-
shouldBeEnabled = "No"
|
|
447
|
-
ignoreCount = "0"
|
|
448
|
-
continueAfterRunningActions = "No"
|
|
449
|
-
filePath = "WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m"
|
|
450
|
-
startingColumnNumber = "9223372036854775807"
|
|
451
|
-
endingColumnNumber = "9223372036854775807"
|
|
452
|
-
startingLineNumber = "45"
|
|
453
|
-
endingLineNumber = "45"
|
|
454
|
-
landmarkName = "+load"
|
|
455
|
-
landmarkType = "7">
|
|
456
|
-
</BreakpointContent>
|
|
457
|
-
</BreakpointProxy>
|
|
458
|
-
<BreakpointProxy
|
|
459
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
460
|
-
<BreakpointContent
|
|
461
|
-
uuid = "9E5F4EFE-B308-4031-AA50-6D656929F706"
|
|
462
|
-
shouldBeEnabled = "No"
|
|
463
|
-
ignoreCount = "0"
|
|
464
|
-
continueAfterRunningActions = "No"
|
|
465
|
-
filePath = "WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m"
|
|
466
|
-
startingColumnNumber = "9223372036854775807"
|
|
467
|
-
endingColumnNumber = "9223372036854775807"
|
|
468
|
-
startingLineNumber = "47"
|
|
469
|
-
endingLineNumber = "47"
|
|
470
|
-
landmarkName = "+load"
|
|
471
|
-
landmarkType = "7">
|
|
472
|
-
</BreakpointContent>
|
|
473
|
-
</BreakpointProxy>
|
|
474
|
-
<BreakpointProxy
|
|
475
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
476
|
-
<BreakpointContent
|
|
477
|
-
uuid = "FACDDF41-4B81-48DF-BD84-C6E0ED509F8C"
|
|
478
|
-
shouldBeEnabled = "No"
|
|
479
|
-
ignoreCount = "0"
|
|
480
|
-
continueAfterRunningActions = "No"
|
|
481
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
482
|
-
startingColumnNumber = "9223372036854775807"
|
|
483
|
-
endingColumnNumber = "9223372036854775807"
|
|
484
|
-
startingLineNumber = "309"
|
|
485
|
-
endingLineNumber = "309"
|
|
486
|
-
landmarkName = "+handleGetLocation:"
|
|
487
|
-
landmarkType = "7">
|
|
488
|
-
</BreakpointContent>
|
|
489
|
-
</BreakpointProxy>
|
|
490
|
-
<BreakpointProxy
|
|
491
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
492
|
-
<BreakpointContent
|
|
493
|
-
uuid = "37FA73E5-ED83-4D04-8453-161E214F837A"
|
|
494
|
-
shouldBeEnabled = "Yes"
|
|
495
|
-
ignoreCount = "0"
|
|
496
|
-
continueAfterRunningActions = "No"
|
|
497
|
-
filePath = "WebDriverAgentLib/Commands/FBCustomCommands.m"
|
|
498
|
-
startingColumnNumber = "9223372036854775807"
|
|
499
|
-
endingColumnNumber = "9223372036854775807"
|
|
500
|
-
startingLineNumber = "316"
|
|
501
|
-
endingLineNumber = "316"
|
|
502
|
-
landmarkName = "+handleGetLocation:"
|
|
503
|
-
landmarkType = "7">
|
|
504
|
-
</BreakpointContent>
|
|
505
|
-
</BreakpointProxy>
|
|
506
|
-
<BreakpointProxy
|
|
507
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
508
|
-
<BreakpointContent
|
|
509
|
-
uuid = "6443EB1E-ABBE-4234-A930-E3573DF92239"
|
|
510
|
-
shouldBeEnabled = "No"
|
|
511
|
-
ignoreCount = "0"
|
|
512
|
-
continueAfterRunningActions = "No"
|
|
513
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
514
|
-
startingColumnNumber = "9223372036854775807"
|
|
515
|
-
endingColumnNumber = "9223372036854775807"
|
|
516
|
-
startingLineNumber = "137"
|
|
517
|
-
endingLineNumber = "137"
|
|
518
|
-
landmarkName = "+takeWithScreenID:scale:compressionQuality:rect:sourceUTI:error:"
|
|
519
|
-
landmarkType = "7">
|
|
520
|
-
</BreakpointContent>
|
|
521
|
-
</BreakpointProxy>
|
|
522
|
-
<BreakpointProxy
|
|
523
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
524
|
-
<BreakpointContent
|
|
525
|
-
uuid = "D553156B-EAAC-48B5-A201-A4855888F479"
|
|
526
|
-
shouldBeEnabled = "No"
|
|
527
|
-
ignoreCount = "0"
|
|
528
|
-
continueAfterRunningActions = "No"
|
|
529
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
530
|
-
startingColumnNumber = "9223372036854775807"
|
|
531
|
-
endingColumnNumber = "9223372036854775807"
|
|
532
|
-
startingLineNumber = "76"
|
|
533
|
-
endingLineNumber = "76"
|
|
534
|
-
landmarkName = "+takeInOriginalResolutionWithQuality:rect:error:"
|
|
535
|
-
landmarkType = "7">
|
|
536
|
-
</BreakpointContent>
|
|
537
|
-
</BreakpointProxy>
|
|
538
|
-
<BreakpointProxy
|
|
539
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
540
|
-
<BreakpointContent
|
|
541
|
-
uuid = "CBA25643-A03E-4408-A32D-245CEB634874"
|
|
542
|
-
shouldBeEnabled = "No"
|
|
543
|
-
ignoreCount = "0"
|
|
544
|
-
continueAfterRunningActions = "No"
|
|
545
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
546
|
-
startingColumnNumber = "9223372036854775807"
|
|
547
|
-
endingColumnNumber = "9223372036854775807"
|
|
548
|
-
startingLineNumber = "73"
|
|
549
|
-
endingLineNumber = "73"
|
|
550
|
-
landmarkName = "+takeInOriginalResolutionWithQuality:rect:error:"
|
|
551
|
-
landmarkType = "7">
|
|
552
|
-
</BreakpointContent>
|
|
553
|
-
</BreakpointProxy>
|
|
554
|
-
<BreakpointProxy
|
|
555
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
556
|
-
<BreakpointContent
|
|
557
|
-
uuid = "B7272C93-BC06-46D5-A45F-5B7D004E8BFF"
|
|
558
|
-
shouldBeEnabled = "No"
|
|
559
|
-
ignoreCount = "0"
|
|
560
|
-
continueAfterRunningActions = "No"
|
|
561
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
562
|
-
startingColumnNumber = "9223372036854775807"
|
|
563
|
-
endingColumnNumber = "9223372036854775807"
|
|
564
|
-
startingLineNumber = "92"
|
|
565
|
-
endingLineNumber = "92"
|
|
566
|
-
landmarkName = "+takeInOriginalResolutionWithQuality:error:"
|
|
567
|
-
landmarkType = "7">
|
|
568
|
-
</BreakpointContent>
|
|
569
|
-
</BreakpointProxy>
|
|
570
|
-
<BreakpointProxy
|
|
571
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
572
|
-
<BreakpointContent
|
|
573
|
-
uuid = "2CED838E-DA0B-45AC-B6E5-89F307217FE1"
|
|
574
|
-
shouldBeEnabled = "No"
|
|
575
|
-
ignoreCount = "0"
|
|
576
|
-
continueAfterRunningActions = "No"
|
|
577
|
-
filePath = "WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
578
|
-
startingColumnNumber = "9223372036854775807"
|
|
579
|
-
endingColumnNumber = "9223372036854775807"
|
|
580
|
-
startingLineNumber = "55"
|
|
581
|
-
endingLineNumber = "55"
|
|
582
|
-
landmarkName = "-submitImage:uti:scalingFactor:compressionQuality:completionHandler:"
|
|
583
|
-
landmarkType = "7">
|
|
584
|
-
<Locations>
|
|
585
|
-
<Location
|
|
586
|
-
uuid = "2CED838E-DA0B-45AC-B6E5-89F307217FE1 - 90d26db73e1b824"
|
|
587
|
-
shouldBeEnabled = "Yes"
|
|
588
|
-
ignoreCount = "0"
|
|
589
|
-
continueAfterRunningActions = "No"
|
|
590
|
-
symbolName = "-[FBImageIOScaler submitImage:uti:scalingFactor:compressionQuality:completionHandler:]"
|
|
591
|
-
moduleName = "WebDriverAgentLib"
|
|
592
|
-
usesParentBreakpointCondition = "Yes"
|
|
593
|
-
urlString = "file:///Users/kazuaki/GitHub/WebDriverAgent/WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
594
|
-
startingColumnNumber = "9223372036854775807"
|
|
595
|
-
endingColumnNumber = "9223372036854775807"
|
|
596
|
-
startingLineNumber = "55"
|
|
597
|
-
endingLineNumber = "55"
|
|
598
|
-
offsetFromSymbolStart = "341">
|
|
599
|
-
</Location>
|
|
600
|
-
<Location
|
|
601
|
-
uuid = "2CED838E-DA0B-45AC-B6E5-89F307217FE1 - 90d26db73e1b824"
|
|
602
|
-
shouldBeEnabled = "Yes"
|
|
603
|
-
ignoreCount = "0"
|
|
604
|
-
continueAfterRunningActions = "No"
|
|
605
|
-
symbolName = "-[FBImageIOScaler submitImage:uti:scalingFactor:compressionQuality:completionHandler:]"
|
|
606
|
-
moduleName = "WebDriverAgentLib"
|
|
607
|
-
usesParentBreakpointCondition = "Yes"
|
|
608
|
-
urlString = "file:///Users/kazuaki/GitHub/WebDriverAgent/WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
609
|
-
startingColumnNumber = "9223372036854775807"
|
|
610
|
-
endingColumnNumber = "9223372036854775807"
|
|
611
|
-
startingLineNumber = "55"
|
|
612
|
-
endingLineNumber = "55"
|
|
613
|
-
offsetFromSymbolStart = "346">
|
|
614
|
-
</Location>
|
|
615
|
-
<Location
|
|
616
|
-
uuid = "2CED838E-DA0B-45AC-B6E5-89F307217FE1 - 90d26db73e1b824"
|
|
617
|
-
shouldBeEnabled = "Yes"
|
|
618
|
-
ignoreCount = "0"
|
|
619
|
-
continueAfterRunningActions = "No"
|
|
620
|
-
symbolName = "-[FBImageIOScaler submitImage:uti:scalingFactor:compressionQuality:completionHandler:]"
|
|
621
|
-
moduleName = "WebDriverAgentLib"
|
|
622
|
-
usesParentBreakpointCondition = "Yes"
|
|
623
|
-
urlString = "file:///Users/kazuaki/GitHub/WebDriverAgent/WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
624
|
-
startingColumnNumber = "9223372036854775807"
|
|
625
|
-
endingColumnNumber = "9223372036854775807"
|
|
626
|
-
startingLineNumber = "55"
|
|
627
|
-
endingLineNumber = "55"
|
|
628
|
-
offsetFromSymbolStart = "521">
|
|
629
|
-
</Location>
|
|
630
|
-
</Locations>
|
|
631
|
-
</BreakpointContent>
|
|
632
|
-
</BreakpointProxy>
|
|
633
|
-
<BreakpointProxy
|
|
634
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
635
|
-
<BreakpointContent
|
|
636
|
-
uuid = "EBA85278-A0F9-414E-9D82-4252CEB994FA"
|
|
637
|
-
shouldBeEnabled = "No"
|
|
638
|
-
ignoreCount = "0"
|
|
639
|
-
continueAfterRunningActions = "No"
|
|
640
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
641
|
-
startingColumnNumber = "9223372036854775807"
|
|
642
|
-
endingColumnNumber = "9223372036854775807"
|
|
643
|
-
startingLineNumber = "132"
|
|
644
|
-
endingLineNumber = "132"
|
|
645
|
-
landmarkName = "+takeWithScreenID:scale:compressionQuality:rect:sourceUTI:error:"
|
|
646
|
-
landmarkType = "7">
|
|
647
|
-
</BreakpointContent>
|
|
648
|
-
</BreakpointProxy>
|
|
649
|
-
<BreakpointProxy
|
|
650
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
651
|
-
<BreakpointContent
|
|
652
|
-
uuid = "774ED0CF-929F-402B-AFC1-51978DF91874"
|
|
653
|
-
shouldBeEnabled = "No"
|
|
654
|
-
ignoreCount = "0"
|
|
655
|
-
continueAfterRunningActions = "No"
|
|
656
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
657
|
-
startingColumnNumber = "9223372036854775807"
|
|
658
|
-
endingColumnNumber = "9223372036854775807"
|
|
659
|
-
startingLineNumber = "47"
|
|
660
|
-
endingLineNumber = "47"
|
|
661
|
-
landmarkName = "+compressionQualityWithQuality:"
|
|
662
|
-
landmarkType = "7">
|
|
663
|
-
</BreakpointContent>
|
|
664
|
-
</BreakpointProxy>
|
|
665
|
-
<BreakpointProxy
|
|
666
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
667
|
-
<BreakpointContent
|
|
668
|
-
uuid = "60F615FC-2F1D-486B-8562-5C172B0C5338"
|
|
669
|
-
shouldBeEnabled = "No"
|
|
670
|
-
ignoreCount = "0"
|
|
671
|
-
continueAfterRunningActions = "No"
|
|
672
|
-
filePath = "WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m"
|
|
673
|
-
startingColumnNumber = "9223372036854775807"
|
|
674
|
-
endingColumnNumber = "9223372036854775807"
|
|
675
|
-
startingLineNumber = "68"
|
|
676
|
-
endingLineNumber = "68"
|
|
677
|
-
landmarkName = "-testLandscapeScreenshot"
|
|
678
|
-
landmarkType = "7">
|
|
679
|
-
</BreakpointContent>
|
|
680
|
-
</BreakpointProxy>
|
|
681
|
-
<BreakpointProxy
|
|
682
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
683
|
-
<BreakpointContent
|
|
684
|
-
uuid = "B31EB68D-0E0F-4118-BF1E-FC9CCB47F03E"
|
|
685
|
-
shouldBeEnabled = "Yes"
|
|
686
|
-
ignoreCount = "0"
|
|
687
|
-
continueAfterRunningActions = "No"
|
|
688
|
-
filePath = "WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m"
|
|
689
|
-
startingColumnNumber = "9223372036854775807"
|
|
690
|
-
endingColumnNumber = "9223372036854775807"
|
|
691
|
-
startingLineNumber = "67"
|
|
692
|
-
endingLineNumber = "67"
|
|
693
|
-
landmarkName = "-testLandscapeScreenshot"
|
|
694
|
-
landmarkType = "7">
|
|
695
|
-
</BreakpointContent>
|
|
696
|
-
</BreakpointProxy>
|
|
697
|
-
<BreakpointProxy
|
|
698
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
699
|
-
<BreakpointContent
|
|
700
|
-
uuid = "7407E8F4-877A-4DDF-8F6A-A9E9FA3D7EB3"
|
|
701
|
-
shouldBeEnabled = "No"
|
|
702
|
-
ignoreCount = "0"
|
|
703
|
-
continueAfterRunningActions = "No"
|
|
704
|
-
filePath = "WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
705
|
-
startingColumnNumber = "9223372036854775807"
|
|
706
|
-
endingColumnNumber = "9223372036854775807"
|
|
707
|
-
startingLineNumber = "146"
|
|
708
|
-
endingLineNumber = "146"
|
|
709
|
-
landmarkName = "-scaledImageWithImage:uti:rect:scalingFactor:compressionQuality:error:"
|
|
710
|
-
landmarkType = "7">
|
|
711
|
-
</BreakpointContent>
|
|
712
|
-
</BreakpointProxy>
|
|
713
|
-
<BreakpointProxy
|
|
714
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
715
|
-
<BreakpointContent
|
|
716
|
-
uuid = "C8229F5B-4277-4381-ABE5-5B54FB06EF54"
|
|
717
|
-
shouldBeEnabled = "No"
|
|
718
|
-
ignoreCount = "0"
|
|
719
|
-
continueAfterRunningActions = "No"
|
|
720
|
-
filePath = "WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
721
|
-
startingColumnNumber = "9223372036854775807"
|
|
722
|
-
endingColumnNumber = "9223372036854775807"
|
|
723
|
-
startingLineNumber = "149"
|
|
724
|
-
endingLineNumber = "149"
|
|
725
|
-
landmarkName = "-scaledImageWithImage:uti:rect:scalingFactor:compressionQuality:error:"
|
|
726
|
-
landmarkType = "7">
|
|
727
|
-
</BreakpointContent>
|
|
728
|
-
</BreakpointProxy>
|
|
729
|
-
<BreakpointProxy
|
|
730
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
731
|
-
<BreakpointContent
|
|
732
|
-
uuid = "E57763BD-AF14-412F-A467-F4A1E8D92D91"
|
|
733
|
-
shouldBeEnabled = "No"
|
|
734
|
-
ignoreCount = "0"
|
|
735
|
-
continueAfterRunningActions = "No"
|
|
736
|
-
filePath = "WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
737
|
-
startingColumnNumber = "9223372036854775807"
|
|
738
|
-
endingColumnNumber = "9223372036854775807"
|
|
739
|
-
startingLineNumber = "156"
|
|
740
|
-
endingLineNumber = "156"
|
|
741
|
-
landmarkName = "-scaledImageWithImage:uti:rect:scalingFactor:compressionQuality:error:"
|
|
742
|
-
landmarkType = "7">
|
|
743
|
-
</BreakpointContent>
|
|
744
|
-
</BreakpointProxy>
|
|
745
|
-
<BreakpointProxy
|
|
746
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
747
|
-
<BreakpointContent
|
|
748
|
-
uuid = "987055D5-4CC2-473A-8CF0-49BE5E4BADAF"
|
|
749
|
-
shouldBeEnabled = "No"
|
|
750
|
-
ignoreCount = "0"
|
|
751
|
-
continueAfterRunningActions = "No"
|
|
752
|
-
filePath = "WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
753
|
-
startingColumnNumber = "9223372036854775807"
|
|
754
|
-
endingColumnNumber = "9223372036854775807"
|
|
755
|
-
startingLineNumber = "157"
|
|
756
|
-
endingLineNumber = "157"
|
|
757
|
-
landmarkName = "-scaledImageWithImage:uti:rect:scalingFactor:compressionQuality:error:"
|
|
758
|
-
landmarkType = "7">
|
|
759
|
-
</BreakpointContent>
|
|
760
|
-
</BreakpointProxy>
|
|
761
|
-
<BreakpointProxy
|
|
762
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
763
|
-
<BreakpointContent
|
|
764
|
-
uuid = "79E80161-2798-4CA8-BE27-CD9BB7B2E576"
|
|
765
|
-
shouldBeEnabled = "Yes"
|
|
766
|
-
ignoreCount = "0"
|
|
767
|
-
continueAfterRunningActions = "No"
|
|
768
|
-
filePath = "WebDriverAgentLib/Utilities/FBImageIOScaler.m"
|
|
769
|
-
startingColumnNumber = "9223372036854775807"
|
|
770
|
-
endingColumnNumber = "9223372036854775807"
|
|
771
|
-
startingLineNumber = "124"
|
|
772
|
-
endingLineNumber = "124"
|
|
773
|
-
landmarkName = "-scaledImageWithImage:uti:rect:scalingFactor:compressionQuality:error:"
|
|
774
|
-
landmarkType = "7">
|
|
775
|
-
</BreakpointContent>
|
|
776
|
-
</BreakpointProxy>
|
|
777
|
-
<BreakpointProxy
|
|
778
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
779
|
-
<BreakpointContent
|
|
780
|
-
uuid = "806B9AFA-8F5D-4043-9D97-D9419CECEF37"
|
|
781
|
-
shouldBeEnabled = "Yes"
|
|
782
|
-
ignoreCount = "0"
|
|
783
|
-
continueAfterRunningActions = "No"
|
|
784
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
785
|
-
startingColumnNumber = "9223372036854775807"
|
|
786
|
-
endingColumnNumber = "9223372036854775807"
|
|
787
|
-
startingLineNumber = "74"
|
|
788
|
-
endingLineNumber = "74"
|
|
789
|
-
landmarkName = "+takeInOriginalResolutionWithQuality:rect:error:"
|
|
790
|
-
landmarkType = "7">
|
|
791
|
-
</BreakpointContent>
|
|
792
|
-
</BreakpointProxy>
|
|
793
|
-
<BreakpointProxy
|
|
794
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
795
|
-
<BreakpointContent
|
|
796
|
-
uuid = "22CF5998-BB36-4DD7-85CE-84D49C19D3D2"
|
|
797
|
-
shouldBeEnabled = "Yes"
|
|
798
|
-
ignoreCount = "0"
|
|
799
|
-
continueAfterRunningActions = "No"
|
|
800
|
-
filePath = "WebDriverAgentLib/Utilities/FBScreenshot.m"
|
|
801
|
-
startingColumnNumber = "9223372036854775807"
|
|
802
|
-
endingColumnNumber = "9223372036854775807"
|
|
803
|
-
startingLineNumber = "93"
|
|
804
|
-
endingLineNumber = "93"
|
|
805
|
-
landmarkName = "+takeInOriginalResolutionWithQuality:error:"
|
|
806
|
-
landmarkType = "7">
|
|
807
|
-
</BreakpointContent>
|
|
808
|
-
</BreakpointProxy>
|
|
809
|
-
</Breakpoints>
|
|
810
|
-
</Bucket>
|