XCUICoordinate.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // Generated by class-dump 3.5 (64 bit).
  3. //
  4. // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
  5. //
  6. #import <TargetConditionals.h>
  7. #import <XCTest/XCUICoordinate.h>
  8. @class XCUIElement;
  9. #if !TARGET_OS_TV
  10. @interface XCUICoordinate ()
  11. {
  12. XCUIElement *_element;
  13. XCUICoordinate *_coordinate;
  14. CGVector _normalizedOffset;
  15. CGVector _pointsOffset;
  16. }
  17. @property(readonly) CGVector pointsOffset; // @synthesize pointsOffset=_pointsOffset;
  18. @property(readonly) CGVector normalizedOffset; // @synthesize normalizedOffset=_normalizedOffset;
  19. @property(readonly) XCUICoordinate *coordinate; // @synthesize coordinate=_coordinate;
  20. @property(readonly) XCUIElement *element; // @synthesize element=_element;
  21. - (id)initWithCoordinate:(id)arg1 pointsOffset:(CGVector)arg2;
  22. - (id)initWithElement:(id)arg1 normalizedOffset:(CGVector)arg2;
  23. - (id)init;
  24. - (void)pressForDuration:(double)arg1 thenDragToCoordinate:(id)arg2;
  25. - (void)pressForDuration:(double)arg1;
  26. - (void)doubleTap;
  27. - (void)tap;
  28. - (void)pressWithPressure:(double)arg1 duration:(double)arg2;
  29. - (void)forcePress;
  30. // Since Xcode 12
  31. - (void)pressForDuration:(double)duration
  32. thenDragToCoordinate:(XCUICoordinate *)otherCoordinate
  33. withVelocity:(CGFloat)velocity
  34. thenHoldForDuration:(double)holdDuration;
  35. @end
  36. #endif