appium-webdriveragent 16.1.2 → 16.1.4

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/WebDriverAgent.xcodeproj/project.pbxproj +297 -0
  3. package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationApp_tvOS.xcscheme +78 -0
  4. package/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_tvOS.xcscheme +86 -0
  5. package/WebDriverAgentLib/Categories/XCUIApplication+FBAlert.h +20 -8
  6. package/WebDriverAgentLib/Categories/XCUIApplication+FBAlert.m +116 -60
  7. package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h +15 -0
  8. package/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m +16 -0
  9. package/WebDriverAgentLib/Categories/XCUIElement+FBTVFocuse.m +4 -4
  10. package/WebDriverAgentLib/Commands/FBAlertViewCommands.m +10 -36
  11. package/WebDriverAgentLib/Commands/FBElementCommands.m +3 -3
  12. package/WebDriverAgentLib/FBAlert.h +43 -30
  13. package/WebDriverAgentLib/FBAlert.m +257 -91
  14. package/WebDriverAgentLib/Info.plist +2 -2
  15. package/WebDriverAgentLib/Routing/FBExceptionHandler.m +8 -1
  16. package/WebDriverAgentLib/Routing/FBExceptions.h +9 -0
  17. package/WebDriverAgentLib/Routing/FBExceptions.m +3 -0
  18. package/WebDriverAgentLib/Routing/FBSession.m +11 -13
  19. package/WebDriverAgentLib/Utilities/FBAlertsMonitor.m +11 -9
  20. package/WebDriverAgentLib/Utilities/FBPasteboard.m +8 -4
  21. package/WebDriverAgentLib/Utilities/FBTVNavigationTracker-Private.h +10 -0
  22. package/WebDriverAgentLib/Utilities/FBTVNavigationTracker.h +29 -4
  23. package/WebDriverAgentLib/Utilities/FBTVNavigationTracker.m +62 -27
  24. package/WebDriverAgentTests/IntegrationApp_tvOS/AppDelegate.h +13 -0
  25. package/WebDriverAgentTests/IntegrationApp_tvOS/AppDelegate.m +26 -0
  26. package/WebDriverAgentTests/IntegrationApp_tvOS/Info.plist +41 -0
  27. package/WebDriverAgentTests/IntegrationApp_tvOS/SceneDelegate.h +15 -0
  28. package/WebDriverAgentTests/IntegrationApp_tvOS/SceneDelegate.m +22 -0
  29. package/WebDriverAgentTests/IntegrationApp_tvOS/ViewController.h +13 -0
  30. package/WebDriverAgentTests/IntegrationApp_tvOS/ViewController.m +79 -0
  31. package/WebDriverAgentTests/IntegrationApp_tvOS/main.m +17 -0
  32. package/WebDriverAgentTests/IntegrationTests/FBAlertTests.m +32 -51
  33. package/WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.m +9 -1
  34. package/WebDriverAgentTests/IntegrationTests/FBSafariAlertTests.m +1 -1
  35. package/WebDriverAgentTests/IntegrationTests_tvOS/FBTVFocusIntegrationTests.m +84 -0
  36. package/WebDriverAgentTests/IntegrationTests_tvOS/Info.plist +24 -0
  37. package/WebDriverAgentTests/UnitTests_tvOS/Doubles/FBXCAccessibilityElementDouble.h +27 -0
  38. package/WebDriverAgentTests/UnitTests_tvOS/Doubles/FBXCAccessibilityElementDouble.m +23 -0
  39. package/WebDriverAgentTests/UnitTests_tvOS/Doubles/FBXCElementSnapshotDouble.h +43 -0
  40. package/WebDriverAgentTests/UnitTests_tvOS/Doubles/FBXCElementSnapshotDouble.m +24 -0
  41. package/WebDriverAgentTests/UnitTests_tvOS/FBTVNavigationTrackerTests.m +48 -0
  42. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [16.1.4](https://github.com/appium/WebDriverAgent/compare/v16.1.3...v16.1.4) (2026-08-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ * Eliminate unnecessary activeApplication call in handlePressAndDragCoordinateWithVelocity ([#1197](https://github.com/appium/WebDriverAgent/issues/1197)) ([cf604bd](https://github.com/appium/WebDriverAgent/commit/cf604bdeacb3accceb2346551a3704c0dee2c2bd))
6
+ * Reduce the amount of AX calls while determining direction to focused element ([#1196](https://github.com/appium/WebDriverAgent/issues/1196)) ([5c08bed](https://github.com/appium/WebDriverAgent/commit/5c08beddf40645a7f7237c4205f5a8c1ffb4cc89))
7
+
8
+ ## [16.1.3](https://github.com/appium/WebDriverAgent/compare/v16.1.2...v16.1.3) (2026-08-03)
9
+
10
+ ### Bug Fixes
11
+
12
+ * Optimize alert operations ([#1193](https://github.com/appium/WebDriverAgent/issues/1193)) ([2bc1c40](https://github.com/appium/WebDriverAgent/commit/2bc1c40d20883a9b924b8a177be4d43ffd497901))
13
+
1
14
  ## [16.1.2](https://github.com/appium/WebDriverAgent/compare/v16.1.1...v16.1.2) (2026-08-03)
2
15
 
3
16
  ### Bug Fixes
@@ -41,6 +41,9 @@
41
41
  315A15012518CB8700A3A064 /* TouchableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 315A15002518CB8700A3A064 /* TouchableView.m */; };
42
42
  315A15072518CC2800A3A064 /* TouchSpotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 315A15062518CC2800A3A064 /* TouchSpotView.m */; };
43
43
  315A150A2518D6F400A3A064 /* TouchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 315A15092518D6F400A3A064 /* TouchViewController.m */; };
44
+ 491B4CDEC26699164481DFC0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 722E62C63348A451A351524B /* Foundation.framework */; };
45
+ 5AF49CE43E731B433375C5B7 /* ViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F87CD156E93338642EEFD54 /* ViewController.h */; };
46
+ 5DE3B29128FA52F078160D5B /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A87AE5544E9A5CA7C9168DDF /* SceneDelegate.m */; };
44
47
  6385F4A7220A40760095BBDB /* XCUIApplicationProcessDelay.m in Sources */ = {isa = PBXBuildFile; fileRef = 6385F4A5220A40760095BBDB /* XCUIApplicationProcessDelay.m */; };
45
48
  63CCF91221ECE4C700E94ABD /* FBImageProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CCF91021ECE4C700E94ABD /* FBImageProcessor.h */; };
46
49
  63CCF91321ECE4C700E94ABD /* FBImageProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 63CCF91121ECE4C700E94ABD /* FBImageProcessor.m */; };
@@ -314,6 +317,7 @@
314
317
  64B2650B228CE4FF002A5025 /* FBTVNavigationTracker-Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B26509228CE4FF002A5025 /* FBTVNavigationTracker-Private.h */; };
315
318
  64E3502E2AC0B6EB005F3ACB /* NSDictionary+FBUtf8SafeDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 716F0DA02A16CA1000CDD977 /* NSDictionary+FBUtf8SafeDictionary.m */; };
316
319
  64E3502F2AC0B6FE005F3ACB /* NSDictionary+FBUtf8SafeDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 716F0D9F2A16CA1000CDD977 /* NSDictionary+FBUtf8SafeDictionary.h */; };
320
+ 6CE6B9FF16CEAB475B764A92 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD3770A67ED561EBE5E443A /* main.m */; };
317
321
  711084441DA3AA7500F913D6 /* FBXPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 711084421DA3AA7500F913D6 /* FBXPath.h */; settings = {ATTRIBUTES = (Public, ); }; };
318
322
  711084451DA3AA7500F913D6 /* FBXPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 711084431DA3AA7500F913D6 /* FBXPath.m */; };
319
323
  7119097C2152580600BA3C7E /* XCUIScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 7119097B2152580600BA3C7E /* XCUIScreen.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -535,13 +539,18 @@
535
539
  71F5BE50252F14EB00EE9EBA /* FBExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F5BE4D252F14EB00EE9EBA /* FBExceptions.h */; };
536
540
  71F5BE51252F14EB00EE9EBA /* FBExceptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F5BE4E252F14EB00EE9EBA /* FBExceptions.m */; };
537
541
  71F5BE52252F14EB00EE9EBA /* FBExceptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F5BE4E252F14EB00EE9EBA /* FBExceptions.m */; };
542
+ 72FE28D00A69D335B463C03A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 721E280BFFEFFD40C89277AF /* AppDelegate.m */; };
543
+ 9BE258E6A383AF8BCB59C475 /* FBTVFocusIntegrationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A53731B41356D9B4E723A4D /* FBTVFocusIntegrationTests.m */; };
544
+ A14CB090646BCB0B50F213CF /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D7DD32943CAC7838F942ED5 /* ViewController.m */; };
538
545
  A1B2C3D41F001A00A1B0004 /* XCUIDevice+FBVoiceOver.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B2C3D41F001A00A1B0001 /* XCUIDevice+FBVoiceOver.h */; settings = {ATTRIBUTES = (Public, ); }; };
539
546
  A1B2C3D41F001A00A1B0005 /* XCUIDevice+FBVoiceOver.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B2C3D41F001A00A1B0002 /* XCUIDevice+FBVoiceOver.m */; };
540
547
  A1B2C3D41F001A00A1B0006 /* XCUIDevice+FBVoiceOver.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B2C3D41F001A00A1B0001 /* XCUIDevice+FBVoiceOver.h */; settings = {ATTRIBUTES = (Public, ); }; };
541
548
  A1B2C3D41F001A00A1B0007 /* XCUIDevice+FBVoiceOver.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B2C3D41F001A00A1B0002 /* XCUIDevice+FBVoiceOver.m */; };
542
549
  A1B2C3D41F001A00A1B0008 /* FBVoiceOverTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B2C3D41F001A00A1B0003 /* FBVoiceOverTests.m */; };
543
550
  A1B2C3D4E5F600000000001B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A1B2C3D4E5F600000000001A /* Assets.xcassets */; };
551
+ AAA213E600F40AB7F43D1015 /* WebDriverAgentLib_tvOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 641EE6F82240C5CA00173FCB /* WebDriverAgentLib_tvOS.framework */; };
544
552
  AABBCCDDEEFF001122334457 /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = AABBCCDDEEFF001122334456 /* SceneDelegate.m */; };
553
+ ACA7E8FE7C086A9A6EF7CFDF /* SceneDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F719C2804F6473A9C4D3090 /* SceneDelegate.h */; };
545
554
  AD35D06C1CF1C35500870A75 /* WebDriverAgentLib.framework in Copy frameworks */ = {isa = PBXBuildFile; fileRef = EE158A991CBD452B00A3E3F0 /* WebDriverAgentLib.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
546
555
  AD6C26941CF2379700F8B5FF /* FBAlert.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6C26921CF2379700F8B5FF /* FBAlert.h */; settings = {ATTRIBUTES = (Public, ); }; };
547
556
  AD6C26951CF2379700F8B5FF /* FBAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = AD6C26931CF2379700F8B5FF /* FBAlert.m */; };
@@ -560,11 +569,14 @@
560
569
  B316351D2DDF0CF5007D9317 /* FBAccessibilityTraits.m in Sources */ = {isa = PBXBuildFile; fileRef = B316351B2DDF0CF5007D9317 /* FBAccessibilityTraits.m */; };
561
570
  B316351F2DDF0D0B007D9317 /* FBAccessibilityTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = B316351E2DDF0D0B007D9317 /* FBAccessibilityTraits.h */; };
562
571
  B31635202DDF0D0B007D9317 /* FBAccessibilityTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = B316351E2DDF0D0B007D9317 /* FBAccessibilityTraits.h */; };
572
+ B63FBAF7421417011D724B6F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 722E62C63348A451A351524B /* Foundation.framework */; };
563
573
  C845206222D5E79400EA68CB /* FBUnattachedAppLauncher.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FB547722D4C1FC00B69954 /* FBUnattachedAppLauncher.h */; };
564
574
  C845206322D5E79700EA68CB /* FBUnattachedAppLauncher.m in Sources */ = {isa = PBXBuildFile; fileRef = C8FB547822D4C1FC00B69954 /* FBUnattachedAppLauncher.m */; };
565
575
  C8FB547422D3949C00B69954 /* LSApplicationWorkspace.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FB547322D3949C00B69954 /* LSApplicationWorkspace.h */; };
566
576
  C8FB547922D4C1FC00B69954 /* FBUnattachedAppLauncher.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FB547722D4C1FC00B69954 /* FBUnattachedAppLauncher.h */; };
567
577
  C8FB547A22D4C1FC00B69954 /* FBUnattachedAppLauncher.m in Sources */ = {isa = PBXBuildFile; fileRef = C8FB547822D4C1FC00B69954 /* FBUnattachedAppLauncher.m */; };
578
+ CB1BAB30928B638B300B4477 /* FBXCAccessibilityElementDouble.m in Sources */ = {isa = PBXBuildFile; fileRef = 16223B3E144418CC980D160E /* FBXCAccessibilityElementDouble.m */; };
579
+ DE75F01A64FBC6A58012E6B4 /* FBXCElementSnapshotDouble.m in Sources */ = {isa = PBXBuildFile; fileRef = F46F78706C5157469122F730 /* FBXCElementSnapshotDouble.m */; };
568
580
  E444DC65249131890060D7EB /* HTTPErrorResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = E444DC59249131880060D7EB /* HTTPErrorResponse.h */; };
569
581
  E444DC67249131890060D7EB /* HTTPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E444DC5B249131880060D7EB /* HTTPDataResponse.m */; };
570
582
  E444DC6C249131890060D7EB /* HTTPDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = E444DC60249131890060D7EB /* HTTPDataResponse.h */; };
@@ -606,6 +618,7 @@
606
618
  E444DCD224917A5E0060D7EB /* HTTPErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E444DC61249131890060D7EB /* HTTPErrorResponse.m */; };
607
619
  E444DCD424917A5E0060D7EB /* DDNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = E444DC7F249131B00060D7EB /* DDNumber.m */; };
608
620
  E444DCD624917A5E0060D7EB /* DDRange.m in Sources */ = {isa = PBXBuildFile; fileRef = E444DC7E249131B00060D7EB /* DDRange.m */; };
621
+ ECC4ABB5477FBA3D442559B1 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 242FCA9DD0E30D748E0A1969 /* AppDelegate.h */; };
609
622
  EE006EAD1EB99B15006900A4 /* FBElementVisibilityTests.m in Sources */ = {isa = PBXBuildFile; fileRef = EE006EAC1EB99B15006900A4 /* FBElementVisibilityTests.m */; };
610
623
  EE05BAFA1D13003C00A3EB00 /* FBKeyboardTests.m in Sources */ = {isa = PBXBuildFile; fileRef = EE05BAF91D13003C00A3EB00 /* FBKeyboardTests.m */; };
611
624
  EE0D1F611EBCDCF7006A3123 /* NSString+FBVisualLength.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0D1F5F1EBCDCF7006A3123 /* NSString+FBVisualLength.h */; };
@@ -855,6 +868,13 @@
855
868
  remoteGlobalIDString = 641EE5D52240C5CA00173FCB;
856
869
  remoteInfo = WebDriverAgentLib_tvOS;
857
870
  };
871
+ 87B9178994EC282C279A8242 /* PBXContainerItemProxy */ = {
872
+ isa = PBXContainerItemProxy;
873
+ containerPortal = 91F9DAE11B99DBC2001349B2 /* Project object */;
874
+ proxyType = 1;
875
+ remoteGlobalIDString = 7C3BE5A1B1A6022529590D15;
876
+ remoteInfo = IntegrationApp_tvOS;
877
+ };
858
878
  AD8D96F01D3C12960061268E /* PBXContainerItemProxy */ = {
859
879
  isa = PBXContainerItemProxy;
860
880
  containerPortal = 91F9DAE11B99DBC2001349B2 /* Project object */;
@@ -862,6 +882,13 @@
862
882
  remoteGlobalIDString = EE158A981CBD452B00A3E3F0;
863
883
  remoteInfo = WebDriverAgentLib;
864
884
  };
885
+ BCF4385789C88C87C38D8ABA /* PBXContainerItemProxy */ = {
886
+ isa = PBXContainerItemProxy;
887
+ containerPortal = 91F9DAE11B99DBC2001349B2 /* Project object */;
888
+ proxyType = 1;
889
+ remoteGlobalIDString = 641EE5D52240C5CA00173FCB;
890
+ remoteInfo = WebDriverAgentLib_tvOS;
891
+ };
865
892
  EE158B5B1CBD462500A3E3F0 /* PBXContainerItemProxy */ = {
866
893
  isa = PBXContainerItemProxy;
867
894
  containerPortal = 91F9DAE11B99DBC2001349B2 /* Project object */;
@@ -941,6 +968,7 @@
941
968
  /* Begin PBXFileReference section */
942
969
  0E0413372DF1E15100AF007C /* XCUIElement+FBMinMax.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "XCUIElement+FBMinMax.m"; sourceTree = "<group>"; };
943
970
  0E04133A2DF1E15900AF007C /* XCUIElement+FBMinMax.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCUIElement+FBMinMax.h"; sourceTree = "<group>"; };
971
+ 0F719C2804F6473A9C4D3090 /* SceneDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
944
972
  1357E295233D05240054BDB8 /* XCUIHitPointResult.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCUIHitPointResult.h; sourceTree = "<group>"; };
945
973
  13815F6D2328D20400CDAB61 /* FBActiveAppDetectionPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBActiveAppDetectionPoint.h; sourceTree = "<group>"; };
946
974
  13815F6E2328D20400CDAB61 /* FBActiveAppDetectionPoint.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBActiveAppDetectionPoint.m; sourceTree = "<group>"; };
@@ -956,14 +984,18 @@
956
984
  13DE7A5A287CA444003243C6 /* FBXCElementSnapshotWrapper+Helpers.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "FBXCElementSnapshotWrapper+Helpers.m"; sourceTree = "<group>"; };
957
985
  13FFF2F0287DBEE600E561E4 /* XCElementSnapshotDouble.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCElementSnapshotDouble.h; sourceTree = "<group>"; };
958
986
  13FFF2F1287DBEE600E561E4 /* XCElementSnapshotDouble.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XCElementSnapshotDouble.m; sourceTree = "<group>"; };
987
+ 16223B3E144418CC980D160E /* FBXCAccessibilityElementDouble.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBXCAccessibilityElementDouble.m; sourceTree = "<group>"; };
959
988
  1BA7DD8C206D694B007C7C26 /* XCTElementSetTransformer-Protocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCTElementSetTransformer-Protocol.h"; sourceTree = "<group>"; };
989
+ 242FCA9DD0E30D748E0A1969 /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
960
990
  315A14FF2518CB8700A3A064 /* TouchableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TouchableView.h; sourceTree = "<group>"; };
961
991
  315A15002518CB8700A3A064 /* TouchableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TouchableView.m; sourceTree = "<group>"; };
962
992
  315A15052518CC2800A3A064 /* TouchSpotView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TouchSpotView.h; sourceTree = "<group>"; };
963
993
  315A15062518CC2800A3A064 /* TouchSpotView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TouchSpotView.m; sourceTree = "<group>"; };
964
994
  315A15082518D6F400A3A064 /* TouchViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TouchViewController.h; sourceTree = "<group>"; };
965
995
  315A15092518D6F400A3A064 /* TouchViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TouchViewController.m; sourceTree = "<group>"; };
996
+ 3A53731B41356D9B4E723A4D /* FBTVFocusIntegrationTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = FBTVFocusIntegrationTests.m; sourceTree = "<group>"; };
966
997
  44757A831D42CE8300ECF35E /* XCUIDeviceRotationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XCUIDeviceRotationTests.m; sourceTree = "<group>"; };
998
+ 5D7DD32943CAC7838F942ED5 /* ViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
967
999
  631B523421F6174300625362 /* FBImageProcessorTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBImageProcessorTests.m; sourceTree = "<group>"; };
968
1000
  633E904A220DEE7F007CADF9 /* XCUIApplicationProcessDelay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCUIApplicationProcessDelay.h; sourceTree = "<group>"; };
969
1001
  6385F4A5220A40760095BBDB /* XCUIApplicationProcessDelay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XCUIApplicationProcessDelay.m; sourceTree = "<group>"; };
@@ -985,6 +1017,7 @@
985
1017
  64B26506228C54F2002A5025 /* XCUIElementDouble.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCUIElementDouble.h; sourceTree = "<group>"; };
986
1018
  64B26507228C5514002A5025 /* XCUIElementDouble.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XCUIElementDouble.m; sourceTree = "<group>"; };
987
1019
  64B26509228CE4FF002A5025 /* FBTVNavigationTracker-Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FBTVNavigationTracker-Private.h"; sourceTree = "<group>"; };
1020
+ 6B32DB2419C346EF91F093D4 /* FBXCAccessibilityElementDouble.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBXCAccessibilityElementDouble.h; sourceTree = "<group>"; };
988
1021
  711084421DA3AA7500F913D6 /* FBXPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FBXPath.h; sourceTree = "<group>"; };
989
1022
  711084431DA3AA7500F913D6 /* FBXPath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBXPath.m; sourceTree = "<group>"; };
990
1023
  7119097B2152580600BA3C7E /* XCUIScreen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XCUIScreen.h; sourceTree = "<group>"; };
@@ -1130,12 +1163,19 @@
1130
1163
  71F5BE33252E5B2200EE9EBA /* FBElementSwipingTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBElementSwipingTests.m; sourceTree = "<group>"; };
1131
1164
  71F5BE4D252F14EB00EE9EBA /* FBExceptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBExceptions.h; sourceTree = "<group>"; };
1132
1165
  71F5BE4E252F14EB00EE9EBA /* FBExceptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBExceptions.m; sourceTree = "<group>"; };
1166
+ 721E280BFFEFFD40C89277AF /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
1167
+ 722E62C63348A451A351524B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
1168
+ 7F87CD156E93338642EEFD54 /* ViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
1169
+ 8535171B1B3194840B8B4FCF /* FBXCElementSnapshotDouble.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBXCElementSnapshotDouble.h; sourceTree = "<group>"; };
1170
+ 9DD3770A67ED561EBE5E443A /* main.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
1133
1171
  A1B2C3D41F001A00A1B0001 /* XCUIDevice+FBVoiceOver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "XCUIDevice+FBVoiceOver.h"; sourceTree = "<group>"; };
1134
1172
  A1B2C3D41F001A00A1B0002 /* XCUIDevice+FBVoiceOver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "XCUIDevice+FBVoiceOver.m"; sourceTree = "<group>"; };
1135
1173
  A1B2C3D41F001A00A1B0003 /* FBVoiceOverTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBVoiceOverTests.m; sourceTree = "<group>"; };
1136
1174
  A1B2C3D4E5F600000000001A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = WebDriverAgentRunner/Assets.xcassets; sourceTree = SOURCE_ROOT; };
1175
+ A87AE5544E9A5CA7C9168DDF /* SceneDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = "<group>"; };
1137
1176
  AABBCCDDEEFF001122334455 /* SceneDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
1138
1177
  AABBCCDDEEFF001122334456 /* SceneDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = "<group>"; };
1178
+ ACA330765D30E21E3EEB163D /* IntegrationTests_tvOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IntegrationTests_tvOS.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
1139
1179
  AD42DD2A1CF121E600806E5D /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = "<group>"; };
1140
1180
  AD6C26921CF2379700F8B5FF /* FBAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FBAlert.h; path = WebDriverAgentLib/FBAlert.h; sourceTree = SOURCE_ROOT; };
1141
1181
  AD6C26931CF2379700F8B5FF /* FBAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; name = FBAlert.m; path = WebDriverAgentLib/FBAlert.m; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
@@ -1157,6 +1197,8 @@
1157
1197
  C8FB547322D3949C00B69954 /* LSApplicationWorkspace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LSApplicationWorkspace.h; sourceTree = "<group>"; };
1158
1198
  C8FB547722D4C1FC00B69954 /* FBUnattachedAppLauncher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBUnattachedAppLauncher.h; sourceTree = "<group>"; };
1159
1199
  C8FB547822D4C1FC00B69954 /* FBUnattachedAppLauncher.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBUnattachedAppLauncher.m; sourceTree = "<group>"; };
1200
+ E005FEDAF49DCFA9FB77BEF3 /* IntegrationApp_tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = IntegrationApp_tvOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
1201
+ E2F99C1A19D7B6D5B872D084 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1160
1202
  E444DC59249131880060D7EB /* HTTPErrorResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPErrorResponse.h; path = WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h; sourceTree = SOURCE_ROOT; };
1161
1203
  E444DC5B249131880060D7EB /* HTTPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPDataResponse.m; path = WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.m; sourceTree = SOURCE_ROOT; };
1162
1204
  E444DC60249131890060D7EB /* HTTPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPDataResponse.h; path = WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.h; sourceTree = SOURCE_ROOT; };
@@ -1428,11 +1470,30 @@
1428
1470
  EEE9B4701CD02B88009D2030 /* FBRunLoopSpinner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FBRunLoopSpinner.h; sourceTree = "<group>"; };
1429
1471
  EEE9B4711CD02B88009D2030 /* FBRunLoopSpinner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBRunLoopSpinner.m; sourceTree = "<group>"; };
1430
1472
  EEF9882A1C486603005CA669 /* WebDriverAgentRunner.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = WebDriverAgentRunner.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
1473
+ F46F78706C5157469122F730 /* FBXCElementSnapshotDouble.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FBXCElementSnapshotDouble.m; sourceTree = "<group>"; };
1431
1474
  F59CD6D22EF16E5E00F91287 /* XCUIElement+FBCustomActions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCUIElement+FBCustomActions.h"; sourceTree = "<group>"; };
1432
1475
  F59CD6D32EF16E5E00F91287 /* XCUIElement+FBCustomActions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "XCUIElement+FBCustomActions.m"; sourceTree = "<group>"; };
1476
+ FF8E3B470FC9639D5F18E2EA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1433
1477
  /* End PBXFileReference section */
1434
1478
 
1435
1479
  /* Begin PBXFrameworksBuildPhase section */
1480
+ 266808779F8E38E2C3280720 /* Frameworks */ = {
1481
+ isa = PBXFrameworksBuildPhase;
1482
+ buildActionMask = 2147483647;
1483
+ files = (
1484
+ 491B4CDEC26699164481DFC0 /* Foundation.framework in Frameworks */,
1485
+ );
1486
+ runOnlyForDeploymentPostprocessing = 0;
1487
+ };
1488
+ 27DCAD21E0E9E30531F954C5 /* Frameworks */ = {
1489
+ isa = PBXFrameworksBuildPhase;
1490
+ buildActionMask = 2147483647;
1491
+ files = (
1492
+ B63FBAF7421417011D724B6F /* Foundation.framework in Frameworks */,
1493
+ AAA213E600F40AB7F43D1015 /* WebDriverAgentLib_tvOS.framework in Frameworks */,
1494
+ );
1495
+ runOnlyForDeploymentPostprocessing = 0;
1496
+ };
1436
1497
  641EE2D72240BBE300173FCB /* Frameworks */ = {
1437
1498
  isa = PBXFrameworksBuildPhase;
1438
1499
  buildActionMask = 2147483647;
@@ -1571,6 +1632,10 @@
1571
1632
  children = (
1572
1633
  64B26506228C54F2002A5025 /* XCUIElementDouble.h */,
1573
1634
  64B26507228C5514002A5025 /* XCUIElementDouble.m */,
1635
+ 6B32DB2419C346EF91F093D4 /* FBXCAccessibilityElementDouble.h */,
1636
+ 16223B3E144418CC980D160E /* FBXCAccessibilityElementDouble.m */,
1637
+ 8535171B1B3194840B8B4FCF /* FBXCElementSnapshotDouble.h */,
1638
+ F46F78706C5157469122F730 /* FBXCElementSnapshotDouble.m */,
1574
1639
  );
1575
1640
  path = Doubles;
1576
1641
  sourceTree = "<group>";
@@ -1593,6 +1658,7 @@
1593
1658
  7155B41A224D5B480042A993 /* libAccessibility.tbd */,
1594
1659
  7155B419224D5B460042A993 /* libxml2.tbd */,
1595
1660
  716C9342224D53A1004B8542 /* XCTest.framework */,
1661
+ 722E62C63348A451A351524B /* Foundation.framework */,
1596
1662
  );
1597
1663
  name = tvOS;
1598
1664
  sourceTree = "<group>";
@@ -1619,6 +1685,16 @@
1619
1685
  name = CocoaAsyncSocket;
1620
1686
  sourceTree = "<group>";
1621
1687
  };
1688
+ 89DE54DD1FA69115F5538E11 /* IntegrationTests_tvOS */ = {
1689
+ isa = PBXGroup;
1690
+ children = (
1691
+ 3A53731B41356D9B4E723A4D /* FBTVFocusIntegrationTests.m */,
1692
+ FF8E3B470FC9639D5F18E2EA /* Info.plist */,
1693
+ );
1694
+ name = IntegrationTests_tvOS;
1695
+ path = IntegrationTests_tvOS;
1696
+ sourceTree = "<group>";
1697
+ };
1622
1698
  91F9DAE01B99DBC2001349B2 = {
1623
1699
  isa = PBXGroup;
1624
1700
  children = (
@@ -1651,6 +1727,8 @@
1651
1727
  641EE2DA2240BBE300173FCB /* WebDriverAgentRunner_tvOS.xctest */,
1652
1728
  641EE6F82240C5CA00173FCB /* WebDriverAgentLib_tvOS.framework */,
1653
1729
  64B264F9228C50E0002A5025 /* UnitTests_tvOS.xctest */,
1730
+ E005FEDAF49DCFA9FB77BEF3 /* IntegrationApp_tvOS.app */,
1731
+ ACA330765D30E21E3EEB163D /* IntegrationTests_tvOS.xctest */,
1654
1732
  );
1655
1733
  name = Products;
1656
1734
  sourceTree = "<group>";
@@ -2052,6 +2130,8 @@
2052
2130
  EE9B76801CF7997600275851 /* IntegrationApp */,
2053
2131
  EE9B76541CF7987300275851 /* IntegrationTests */,
2054
2132
  EE9B76561CF7987300275851 /* UnitTests */,
2133
+ F47AAEACC427354CDC7C935F /* IntegrationApp_tvOS */,
2134
+ 89DE54DD1FA69115F5538E11 /* IntegrationTests_tvOS */,
2055
2135
  );
2056
2136
  path = WebDriverAgentTests;
2057
2137
  sourceTree = "<group>";
@@ -2327,6 +2407,22 @@
2327
2407
  path = XCTUITestRunner;
2328
2408
  sourceTree = SOURCE_ROOT;
2329
2409
  };
2410
+ F47AAEACC427354CDC7C935F /* IntegrationApp_tvOS */ = {
2411
+ isa = PBXGroup;
2412
+ children = (
2413
+ 9DD3770A67ED561EBE5E443A /* main.m */,
2414
+ 242FCA9DD0E30D748E0A1969 /* AppDelegate.h */,
2415
+ 721E280BFFEFFD40C89277AF /* AppDelegate.m */,
2416
+ 7F87CD156E93338642EEFD54 /* ViewController.h */,
2417
+ 5D7DD32943CAC7838F942ED5 /* ViewController.m */,
2418
+ E2F99C1A19D7B6D5B872D084 /* Info.plist */,
2419
+ 0F719C2804F6473A9C4D3090 /* SceneDelegate.h */,
2420
+ A87AE5544E9A5CA7C9168DDF /* SceneDelegate.m */,
2421
+ );
2422
+ name = IntegrationApp_tvOS;
2423
+ path = IntegrationApp_tvOS;
2424
+ sourceTree = "<group>";
2425
+ };
2330
2426
  /* End PBXGroup section */
2331
2427
 
2332
2428
  /* Begin PBXHeadersBuildPhase section */
@@ -2574,6 +2670,16 @@
2574
2670
  );
2575
2671
  runOnlyForDeploymentPostprocessing = 0;
2576
2672
  };
2673
+ 86CF98D7198B272C0DA00216 /* Headers */ = {
2674
+ isa = PBXHeadersBuildPhase;
2675
+ buildActionMask = 2147483647;
2676
+ files = (
2677
+ ECC4ABB5477FBA3D442559B1 /* AppDelegate.h in Headers */,
2678
+ 5AF49CE43E731B433375C5B7 /* ViewController.h in Headers */,
2679
+ ACA7E8FE7C086A9A6EF7CFDF /* SceneDelegate.h in Headers */,
2680
+ );
2681
+ runOnlyForDeploymentPostprocessing = 0;
2682
+ };
2577
2683
  EE158A961CBD452B00A3E3F0 /* Headers */ = {
2578
2684
  isa = PBXHeadersBuildPhase;
2579
2685
  buildActionMask = 2147483647;
@@ -2879,6 +2985,43 @@
2879
2985
  productReference = 64B264F9228C50E0002A5025 /* UnitTests_tvOS.xctest */;
2880
2986
  productType = "com.apple.product-type.bundle.unit-test";
2881
2987
  };
2988
+ 7C3BE5A1B1A6022529590D15 /* IntegrationApp_tvOS */ = {
2989
+ isa = PBXNativeTarget;
2990
+ buildConfigurationList = 52337A6D84BBC564B5D2090B /* Build configuration list for PBXNativeTarget "IntegrationApp_tvOS" */;
2991
+ buildPhases = (
2992
+ FEEB9E54CB496CD754234805 /* Sources */,
2993
+ 266808779F8E38E2C3280720 /* Frameworks */,
2994
+ DD55225253CF9074CCC2FA16 /* Resources */,
2995
+ 86CF98D7198B272C0DA00216 /* Headers */,
2996
+ );
2997
+ buildRules = (
2998
+ );
2999
+ dependencies = (
3000
+ );
3001
+ name = IntegrationApp_tvOS;
3002
+ productName = IntegrationApp_tvOS;
3003
+ productReference = E005FEDAF49DCFA9FB77BEF3 /* IntegrationApp_tvOS.app */;
3004
+ productType = "com.apple.product-type.application";
3005
+ };
3006
+ DE52ACA4B43F527189E374EE /* IntegrationTests_tvOS */ = {
3007
+ isa = PBXNativeTarget;
3008
+ buildConfigurationList = 6680183F4B03DDD603B74694 /* Build configuration list for PBXNativeTarget "IntegrationTests_tvOS" */;
3009
+ buildPhases = (
3010
+ 0C8F51A35FC55062075A95E1 /* Sources */,
3011
+ 27DCAD21E0E9E30531F954C5 /* Frameworks */,
3012
+ 96D4839EA1C7D7555DF56450 /* Resources */,
3013
+ );
3014
+ buildRules = (
3015
+ );
3016
+ dependencies = (
3017
+ 8BD208527AC761DA8EEE05C8 /* PBXTargetDependency */,
3018
+ 6D0EAD306A2B172651477905 /* PBXTargetDependency */,
3019
+ );
3020
+ name = IntegrationTests_tvOS;
3021
+ productName = IntegrationTests_tvOS;
3022
+ productReference = ACA330765D30E21E3EEB163D /* IntegrationTests_tvOS.xctest */;
3023
+ productType = "com.apple.product-type.bundle.ui-testing";
3024
+ };
2882
3025
  EE158A981CBD452B00A3E3F0 /* WebDriverAgentLib */ = {
2883
3026
  isa = PBXNativeTarget;
2884
3027
  buildConfigurationList = EE158AA01CBD452B00A3E3F0 /* Build configuration list for PBXNativeTarget "WebDriverAgentLib" */;
@@ -3028,6 +3171,13 @@
3028
3171
  64B264F8228C50E0002A5025 = {
3029
3172
  CreatedOnToolsVersion = 10.2.1;
3030
3173
  };
3174
+ 7C3BE5A1B1A6022529590D15 = {
3175
+ CreatedOnToolsVersion = 15.0;
3176
+ };
3177
+ DE52ACA4B43F527189E374EE = {
3178
+ CreatedOnToolsVersion = 15.0;
3179
+ TestTargetID = 7C3BE5A1B1A6022529590D15;
3180
+ };
3031
3181
  EE158A981CBD452B00A3E3F0 = {
3032
3182
  CreatedOnToolsVersion = 7.3;
3033
3183
  };
@@ -3069,6 +3219,8 @@
3069
3219
  EE5095DD1EBCC9090028E2FE /* IntegrationTests_2 */,
3070
3220
  EE2202031ECC612200A29571 /* IntegrationTests_3 */,
3071
3221
  EE9B75D31CF7956C00275851 /* IntegrationApp */,
3222
+ 7C3BE5A1B1A6022529590D15 /* IntegrationApp_tvOS */,
3223
+ DE52ACA4B43F527189E374EE /* IntegrationTests_tvOS */,
3072
3224
  );
3073
3225
  };
3074
3226
  /* End PBXProject section */
@@ -3095,6 +3247,20 @@
3095
3247
  );
3096
3248
  runOnlyForDeploymentPostprocessing = 0;
3097
3249
  };
3250
+ 96D4839EA1C7D7555DF56450 /* Resources */ = {
3251
+ isa = PBXResourcesBuildPhase;
3252
+ buildActionMask = 2147483647;
3253
+ files = (
3254
+ );
3255
+ runOnlyForDeploymentPostprocessing = 0;
3256
+ };
3257
+ DD55225253CF9074CCC2FA16 /* Resources */ = {
3258
+ isa = PBXResourcesBuildPhase;
3259
+ buildActionMask = 2147483647;
3260
+ files = (
3261
+ );
3262
+ runOnlyForDeploymentPostprocessing = 0;
3263
+ };
3098
3264
  EE158A971CBD452B00A3E3F0 /* Resources */ = {
3099
3265
  isa = PBXResourcesBuildPhase;
3100
3266
  buildActionMask = 2147483647;
@@ -3149,6 +3315,14 @@
3149
3315
  /* End PBXResourcesBuildPhase section */
3150
3316
 
3151
3317
  /* Begin PBXSourcesBuildPhase section */
3318
+ 0C8F51A35FC55062075A95E1 /* Sources */ = {
3319
+ isa = PBXSourcesBuildPhase;
3320
+ buildActionMask = 2147483647;
3321
+ files = (
3322
+ 9BE258E6A383AF8BCB59C475 /* FBTVFocusIntegrationTests.m in Sources */,
3323
+ );
3324
+ runOnlyForDeploymentPostprocessing = 0;
3325
+ };
3152
3326
  641EE2D62240BBE300173FCB /* Sources */ = {
3153
3327
  isa = PBXSourcesBuildPhase;
3154
3328
  buildActionMask = 2147483647;
@@ -3295,6 +3469,8 @@
3295
3469
  files = (
3296
3470
  64B26508228C5514002A5025 /* XCUIElementDouble.m in Sources */,
3297
3471
  64B26504228C5299002A5025 /* FBTVNavigationTrackerTests.m in Sources */,
3472
+ CB1BAB30928B638B300B4477 /* FBXCAccessibilityElementDouble.m in Sources */,
3473
+ DE75F01A64FBC6A58012E6B4 /* FBXCElementSnapshotDouble.m in Sources */,
3298
3474
  );
3299
3475
  runOnlyForDeploymentPostprocessing = 0;
3300
3476
  };
@@ -3551,6 +3727,17 @@
3551
3727
  );
3552
3728
  runOnlyForDeploymentPostprocessing = 0;
3553
3729
  };
3730
+ FEEB9E54CB496CD754234805 /* Sources */ = {
3731
+ isa = PBXSourcesBuildPhase;
3732
+ buildActionMask = 2147483647;
3733
+ files = (
3734
+ 6CE6B9FF16CEAB475B764A92 /* main.m in Sources */,
3735
+ 72FE28D00A69D335B463C03A /* AppDelegate.m in Sources */,
3736
+ A14CB090646BCB0B50F213CF /* ViewController.m in Sources */,
3737
+ 5DE3B29128FA52F078160D5B /* SceneDelegate.m in Sources */,
3738
+ );
3739
+ runOnlyForDeploymentPostprocessing = 0;
3740
+ };
3554
3741
  /* End PBXSourcesBuildPhase section */
3555
3742
 
3556
3743
  /* Begin PBXTargetDependency section */
@@ -3564,6 +3751,18 @@
3564
3751
  target = 641EE5D52240C5CA00173FCB /* WebDriverAgentLib_tvOS */;
3565
3752
  targetProxy = 64B264FF228C50E0002A5025 /* PBXContainerItemProxy */;
3566
3753
  };
3754
+ 6D0EAD306A2B172651477905 /* PBXTargetDependency */ = {
3755
+ isa = PBXTargetDependency;
3756
+ name = IntegrationApp_tvOS;
3757
+ target = 7C3BE5A1B1A6022529590D15 /* IntegrationApp_tvOS */;
3758
+ targetProxy = 87B9178994EC282C279A8242 /* PBXContainerItemProxy */;
3759
+ };
3760
+ 8BD208527AC761DA8EEE05C8 /* PBXTargetDependency */ = {
3761
+ isa = PBXTargetDependency;
3762
+ name = WebDriverAgentLib_tvOS;
3763
+ target = 641EE5D52240C5CA00173FCB /* WebDriverAgentLib_tvOS */;
3764
+ targetProxy = BCF4385789C88C87C38D8ABA /* PBXContainerItemProxy */;
3765
+ };
3567
3766
  AD8D96F11D3C12960061268E /* PBXTargetDependency */ = {
3568
3767
  isa = PBXTargetDependency;
3569
3768
  target = EE158A981CBD452B00A3E3F0 /* WebDriverAgentLib */;
@@ -3618,6 +3817,26 @@
3618
3817
  /* End PBXVariantGroup section */
3619
3818
 
3620
3819
  /* Begin XCBuildConfiguration section */
3820
+ 57F43A3AA96962919E073C6F /* Debug */ = {
3821
+ isa = XCBuildConfiguration;
3822
+ baseConfigurationReference = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */;
3823
+ buildSettings = {
3824
+ DEBUG_INFORMATION_FORMAT = dwarf;
3825
+ FRAMEWORK_SEARCH_PATHS = "$(inherited)";
3826
+ INFOPLIST_FILE = WebDriverAgentTests/IntegrationTests_tvOS/Info.plist;
3827
+ LD_RUNPATH_SEARCH_PATHS = (
3828
+ "$(inherited)",
3829
+ "@executable_path/Frameworks",
3830
+ "@loader_path/Frameworks",
3831
+ );
3832
+ PRODUCT_BUNDLE_IDENTIFIER = com.facebook.wda.integrationTests.tvOS;
3833
+ PRODUCT_NAME = "$(TARGET_NAME)";
3834
+ SDKROOT = appletvos;
3835
+ TARGETED_DEVICE_FAMILY = 3;
3836
+ TEST_TARGET_NAME = IntegrationApp_tvOS;
3837
+ };
3838
+ name = Debug;
3839
+ };
3621
3840
  641EE2E02240BBE300173FCB /* Debug */ = {
3622
3841
  isa = XCBuildConfiguration;
3623
3842
  baseConfigurationReference = 717C0D702518ED2800CAA6EC /* TVOSSettings.xcconfig */;
@@ -4066,6 +4285,66 @@
4066
4285
  };
4067
4286
  name = Release;
4068
4287
  };
4288
+ B1F1F562B7EDB36C8E6BF55E /* Release */ = {
4289
+ isa = XCBuildConfiguration;
4290
+ baseConfigurationReference = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */;
4291
+ buildSettings = {
4292
+ FRAMEWORK_SEARCH_PATHS = "$(inherited)";
4293
+ INFOPLIST_FILE = WebDriverAgentTests/IntegrationTests_tvOS/Info.plist;
4294
+ LD_RUNPATH_SEARCH_PATHS = (
4295
+ "$(inherited)",
4296
+ "@executable_path/Frameworks",
4297
+ "@loader_path/Frameworks",
4298
+ );
4299
+ ONLY_ACTIVE_ARCH = YES;
4300
+ PRODUCT_BUNDLE_IDENTIFIER = com.facebook.wda.integrationTests.tvOS;
4301
+ PRODUCT_NAME = "$(TARGET_NAME)";
4302
+ SDKROOT = appletvos;
4303
+ TARGETED_DEVICE_FAMILY = 3;
4304
+ TEST_TARGET_NAME = IntegrationApp_tvOS;
4305
+ VALIDATE_PRODUCT = YES;
4306
+ };
4307
+ name = Release;
4308
+ };
4309
+ C58783FF0C15CF1BC4BFD426 /* Release */ = {
4310
+ isa = XCBuildConfiguration;
4311
+ baseConfigurationReference = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */;
4312
+ buildSettings = {
4313
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
4314
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
4315
+ INFOPLIST_FILE = WebDriverAgentTests/IntegrationApp_tvOS/Info.plist;
4316
+ LD_RUNPATH_SEARCH_PATHS = (
4317
+ "$(inherited)",
4318
+ "@executable_path/Frameworks",
4319
+ );
4320
+ ONLY_ACTIVE_ARCH = YES;
4321
+ PRODUCT_BUNDLE_IDENTIFIER = com.facebook.IntegrationApp.tvOS;
4322
+ PRODUCT_NAME = "$(TARGET_NAME)";
4323
+ SDKROOT = appletvos;
4324
+ TARGETED_DEVICE_FAMILY = 3;
4325
+ VALIDATE_PRODUCT = YES;
4326
+ };
4327
+ name = Release;
4328
+ };
4329
+ D086EA231A06418467927B2C /* Debug */ = {
4330
+ isa = XCBuildConfiguration;
4331
+ baseConfigurationReference = 717C0D862518ED7000CAA6EC /* TVOSTestSettings.xcconfig */;
4332
+ buildSettings = {
4333
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
4334
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
4335
+ DEBUG_INFORMATION_FORMAT = dwarf;
4336
+ INFOPLIST_FILE = WebDriverAgentTests/IntegrationApp_tvOS/Info.plist;
4337
+ LD_RUNPATH_SEARCH_PATHS = (
4338
+ "$(inherited)",
4339
+ "@executable_path/Frameworks",
4340
+ );
4341
+ PRODUCT_BUNDLE_IDENTIFIER = com.facebook.IntegrationApp.tvOS;
4342
+ PRODUCT_NAME = "$(TARGET_NAME)";
4343
+ SDKROOT = appletvos;
4344
+ TARGETED_DEVICE_FAMILY = 3;
4345
+ };
4346
+ name = Debug;
4347
+ };
4069
4348
  EE158A9E1CBD452B00A3E3F0 /* Debug */ = {
4070
4349
  isa = XCBuildConfiguration;
4071
4350
  baseConfigurationReference = EEE5CABF1C80361500CBBDD9 /* IOSSettings.xcconfig */;
@@ -4493,6 +4772,15 @@
4493
4772
  /* End XCBuildConfiguration section */
4494
4773
 
4495
4774
  /* Begin XCConfigurationList section */
4775
+ 52337A6D84BBC564B5D2090B /* Build configuration list for PBXNativeTarget "IntegrationApp_tvOS" */ = {
4776
+ isa = XCConfigurationList;
4777
+ buildConfigurations = (
4778
+ C58783FF0C15CF1BC4BFD426 /* Release */,
4779
+ D086EA231A06418467927B2C /* Debug */,
4780
+ );
4781
+ defaultConfigurationIsVisible = 0;
4782
+ defaultConfigurationName = Release;
4783
+ };
4496
4784
  641EE2DF2240BBE300173FCB /* Build configuration list for PBXNativeTarget "WebDriverAgentRunner_tvOS" */ = {
4497
4785
  isa = XCConfigurationList;
4498
4786
  buildConfigurations = (
@@ -4520,6 +4808,15 @@
4520
4808
  defaultConfigurationIsVisible = 0;
4521
4809
  defaultConfigurationName = Release;
4522
4810
  };
4811
+ 6680183F4B03DDD603B74694 /* Build configuration list for PBXNativeTarget "IntegrationTests_tvOS" */ = {
4812
+ isa = XCConfigurationList;
4813
+ buildConfigurations = (
4814
+ B1F1F562B7EDB36C8E6BF55E /* Release */,
4815
+ 57F43A3AA96962919E073C6F /* Debug */,
4816
+ );
4817
+ defaultConfigurationIsVisible = 0;
4818
+ defaultConfigurationName = Release;
4819
+ };
4523
4820
  91F9DAE41B99DBC2001349B2 /* Build configuration list for PBXProject "WebDriverAgent" */ = {
4524
4821
  isa = XCConfigurationList;
4525
4822
  buildConfigurations = (
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "2600"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "7C3BE5A1B1A6022529590D15"
18
+ BuildableName = "IntegrationApp_tvOS.app"
19
+ BlueprintName = "IntegrationApp_tvOS"
20
+ ReferencedContainer = "container:WebDriverAgent.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ </Testables>
32
+ </TestAction>
33
+ <LaunchAction
34
+ buildConfiguration = "Debug"
35
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
+ launchStyle = "0"
38
+ useCustomWorkingDirectory = "NO"
39
+ ignoresPersistentStateOnLaunch = "NO"
40
+ debugDocumentVersioning = "YES"
41
+ debugServiceExtension = "internal"
42
+ allowLocationSimulation = "YES">
43
+ <BuildableProductRunnable
44
+ runnableDebuggingMode = "0">
45
+ <BuildableReference
46
+ BuildableIdentifier = "primary"
47
+ BlueprintIdentifier = "7C3BE5A1B1A6022529590D15"
48
+ BuildableName = "IntegrationApp_tvOS.app"
49
+ BlueprintName = "IntegrationApp_tvOS"
50
+ ReferencedContainer = "container:WebDriverAgent.xcodeproj">
51
+ </BuildableReference>
52
+ </BuildableProductRunnable>
53
+ </LaunchAction>
54
+ <ProfileAction
55
+ buildConfiguration = "Release"
56
+ shouldUseLaunchSchemeArgsEnv = "YES"
57
+ savedToolIdentifier = ""
58
+ useCustomWorkingDirectory = "NO"
59
+ debugDocumentVersioning = "YES">
60
+ <BuildableProductRunnable
61
+ runnableDebuggingMode = "0">
62
+ <BuildableReference
63
+ BuildableIdentifier = "primary"
64
+ BlueprintIdentifier = "7C3BE5A1B1A6022529590D15"
65
+ BuildableName = "IntegrationApp_tvOS.app"
66
+ BlueprintName = "IntegrationApp_tvOS"
67
+ ReferencedContainer = "container:WebDriverAgent.xcodeproj">
68
+ </BuildableReference>
69
+ </BuildableProductRunnable>
70
+ </ProfileAction>
71
+ <AnalyzeAction
72
+ buildConfiguration = "Debug">
73
+ </AnalyzeAction>
74
+ <ArchiveAction
75
+ buildConfiguration = "Release"
76
+ revealArchiveInOrganizer = "YES">
77
+ </ArchiveAction>
78
+ </Scheme>