Best EarlGrey code snippet using selectElementWithMatcher.grey_accessibilityLabel
IntegrationTests.m
Source:IntegrationTests.m
...38 weakViewController =39 (FullScreenViewController*)navController.visibleViewController;40 GREYAssertNotNil(weakViewController, @"Expected non-nil FullScreenViewController.");41 }42 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"POP")] performAction:grey_tap()];43 waitForInitialFlutterRender();44 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Native iOS View")]45 assertWithMatcher:grey_sufficientlyVisible()];46 GREYAssertNil(weakViewController, @"Expected FullScreenViewController to be deallocated.");47}48- (void)testDualFlutterView {49 [[EarlGrey selectElementWithMatcher:grey_keyWindow()]50 assertWithMatcher:grey_sufficientlyVisible()];51 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Dual Flutter View (Cold)")]52 performAction:grey_tap()];53 waitForInitialFlutterRender();54 // Verify that there are two Flutter views with the expected marquee text.55 [[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"This is Marquee")] atIndex:0]56 assertWithMatcher:grey_notNil()];57 [[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"This is Marquee")] atIndex:1]58 assertWithMatcher:grey_notNil()];59 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Back")] performAction:grey_tap()];60 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Native iOS View")]61 assertWithMatcher:grey_sufficientlyVisible()];62}63- (void)testHybridView {64 [[EarlGrey selectElementWithMatcher:grey_keyWindow()]65 assertWithMatcher:grey_sufficientlyVisible()];66 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Hybrid View (Warm)")] performAction:grey_tap()];67 waitForInitialFlutterRender();68 [self validateCountsFlutter:@"Platform" count:0];69 [self validateCountsPlatform:@"Flutter" count:_flutterWarmEngineTaps];70 static const int platformTapCount = 4;71 static const int flutterTapCount = 6;72 for (int i = _flutterWarmEngineTaps; i < flutterTapCount; i++, _flutterWarmEngineTaps++) {73 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Increment via Flutter")]74 performAction:grey_tap()];75 }76 [self validateCountsFlutter:@"Platform" count:0];77 [self validateCountsPlatform:@"Flutter" count:_flutterWarmEngineTaps];78 for (int i = 0; i < platformTapCount; i++) {79 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Increment via iOS")]80 performAction:grey_tap()];81 }82 [self validateCountsFlutter:@"Platform" count:platformTapCount];83 [self validateCountsPlatform:@"Flutter" count:_flutterWarmEngineTaps];84 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Back")] performAction:grey_tap()];85 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(@"Native iOS View")]86 assertWithMatcher:grey_sufficientlyVisible()];87}88/** Validates that the text labels showing the number of button taps match the expected counts. */89- (void)validateCountsFlutter:(NSString*)labelPrefix90 count:(int)flutterCount {91 NSString* flutterCountStr =92 [NSString stringWithFormat:@"%@ button tapped %d times.", labelPrefix, flutterCount];93 // TODO(https://github.com/flutter/flutter/issues/17988): Flutter doesn't expose accessibility94 // IDs, so the best we can do is to search for an element with the text we expect.95 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(flutterCountStr)]96 assertWithMatcher:grey_sufficientlyVisible()];97}98- (void)validateCountsPlatform:(NSString*)labelPrefix count:(int)platformCount {99 NSString* platformCountStr =100 [NSString stringWithFormat:@"%@ button tapped %d times.", labelPrefix, platformCount];101 [[[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"counter_on_iOS")]102 assertWithMatcher:grey_text(platformCountStr)] assertWithMatcher:grey_sufficientlyVisible()];103}104@end...
DemoAppTests.m
Source:DemoAppTests.m
...9#import <UIKit/UIKit.h>10#import <XCTest/XCTest.h>11id<GREYMatcher> matcher(NSString *name, Class class)12{13 return grey_allOf(grey_accessibilityLabel(name), grey_kindOfClass(class), grey_sufficientlyVisible(), nil);14}15id<GREYMatcher> cellMatcher(NSString *name)16{17 id<GREYMatcher> matcher = grey_allOf(grey_accessibilityLabel(name), nil);18 return matcher;19}20void selectTab(NSString *tabName)21{22 [[EarlGrey selectElementWithMatcher:matcher(tabName, NSClassFromString(@"UITabBarButton"))] performAction:grey_tap()];23}24void selectButton(NSString *name)25{26 [[EarlGrey selectElementWithMatcher:grey_buttonTitle(name)] performAction:grey_tap()];27}28void selectView(NSString *name)29{30 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(name)] performAction:grey_tap()];31}32void inputText(NSString *labelName, NSString *text)33{34 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(labelName)] performAction:grey_typeText(text)];35}36void assertView(NSString *name)37{38 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(name)] assertWithMatcher:grey_sufficientlyVisible()];39}40void waitForViewWithAccessibility(NSString *view)41{42 NSError *error;43 [[EarlGrey selectElementWithMatcher:grey_firstResponder()] assertWithMatcher:grey_text(view) error:&error];44 if (error) {45 NSLog(@"Error: %@", error);46 }47}48@interface DemoAppTests : XCTestCase <GREYFailureHandler>49@end50@implementation DemoAppTests51- (void)handleException:(GREYFrameworkException *)exception details:(NSString *)details52{53 // Log the failure and state of the app if required.54 // Call thru to XCTFail() with an appropriate error message.55 NSLog(@"Failed test %@", exception);56}57- (void)setInvocationFile:(NSString *)fileName andInvocationLine:(NSUInteger)lineNumber58{59 // Record the file name and line number of the statement which was executing before the60 // failure occurred.61 NSLog(@"Failed %@ at %lu", fileName, (unsigned long)lineNumber);62}63- (void)setUp64{65 [EarlGrey setFailureHandler:self];66}67#pragma mark - Tabs68- (void)testTabBar_demoControllers69{70 selectTab(@"Demo");71 // assertView(@"Action Buttons");72}73- (void)testTabBar_authPage74{75 selectTab(@"OAuth");76 // assertView(@"Log in with Twitter");77}78- (void)testTabBar_teamPage79{80 selectTab(@"Team");81}82#pragma mark - OAuth Tab83- (void)testLoginButton84{85 selectTab(@"OAuth");86 selectView(@"Clear Test Account");87 selectView(@"Log in with Twitter");88 selectView(@"Cancel");89 // TODO: Add tab first item if accounts exist90}91- (void)testCustomLoginButton92{93 selectTab(@"OAuth");94 selectButton(@"Login with Custom Button");95 GREYCondition *waitForWebView = [GREYCondition conditionWithName:@"wait for web view" block:^BOOL {96 return [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Username or email")] assertWithMatcher:grey_notNil()];97 }];98 GREYAssertTrue([waitForWebView waitWithTimeout:3], @"Wait for web view");99}100- (void)testAuth_RemoveAccount101{102 selectTab(@"OAuth");103 selectView(@"Clear Test Account");104 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Accounts in current session")] assertWithMatcher:grey_text(@"")];105}106#pragma mark - Compact Tweets107- (void)testTweets_compact108{109 selectTab(@"Demo");110 selectView(@"Compact Tweets");111 selectView(@"Image Attachment");112 selectView(@"Close");113}114#pragma mark - Regular Tweets115- (void)testTweets_regular116{117 selectTab(@"Demo");118 selectView(@"Regular Tweets");...
grey_accessibilityLabel
Using AI Code Generation
1[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_tap()];2[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_doubleTap()];3[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_typeText(@"text")];4[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_clearText()];5[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollInDirection(kGREYDirectionUp, 10)];6[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollInDirection(kGREYDirectionDown, 10)];7[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollInDirection(kGREYDirectionLeft, 10)];8[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollInDirection(kGREYDirectionRight, 10)];9[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollToContentEdge(kGREYContentEdgeTop)];10[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollToContentEdge(kGREYContentEdgeBottom)];11[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"text")] performAction:grey_scrollToContentEdge(kGREYContentEdgeLeft)];
grey_accessibilityLabel
Using AI Code Generation
1[[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];2[[EarlGrey selectElementWithMatcher:grey_allOf(grey_accessibilityLabel(@"My Label"), grey_sufficientlyVisible(), nil)] assertWithMatcher:grey_sufficientlyVisible()];3[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];4[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];5[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];6[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];7[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];8[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];9[[EarlGrey selectElementWithMatcher:GREYMatchers.matcherForAccessibilityLabel(@"My Label")] assertWithMatcher:grey_sufficientlyVisible()];
grey_accessibilityLabel
Using AI Code Generation
1[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Accessibility Label")]2 .usingSearchAction(grey_scrollInDirection(kGREYDirectionDown, 100), kGREYScrollWhenVisible)3 .atIndex(0)4 .performAction(grey_tap());5public func selectElementWithMatcher(_ matcher: GREYMatcher) -> GREYElementInteraction {6 return GREYElementInteraction.init(elementMatcher: matcher)7}8public init(elementMatcher matcher: GREYMatcher) {9 greyInteraction = GREYElementInteraction.init(elementMatcher: matcher)10}11- (instancetype)initWithElementMatcher:(id<GREYMatcher>)matcher {12 self = [super init];13 if (self) {14 _interaction = [[GREYElementInteraction alloc] initWithElementMatcher:matcher];15 }16 return self;17}18- (instancetype)initWithElementMatcher:(id<GREYMatcher>)matcher NS_DESIGNATED_INITIALIZER;19- (instancetype)initWithElementMatcher:(id<GREYMatcher>)matcher {20 self = [super init];21 if (self) {22 _elementMatcher = matcher;23 _action = nil;24 _searchAction = nil;25 _searchActionErrorOrNil = nil;26 _searchActionPerformCount = 0;27 _searchActionPerformCountMax = kGREYDefaultMaxSearchActionPerformCount;28 _searchActionPerformInterval = kGREYDefaultSearchActionPerformInterval;29 _shouldUseSearchActionForScrolling = YES;30 _shouldUseSearchActionForNonVisibleElements = YES;31 _shouldUseSearchActionForMultipleElements = YES;32 _shouldUseSearchActionForNoElements = YES;33 _shouldUseSearchActionForHiddenElements = YES;34 _shouldUseSearchActionForSystemAlertViews = YES;35 _shouldUseSearchActionForUserInteractionDisabledViews = YES;36 _shouldUseSearchActionForInvisibleViews = YES;37 _shouldUseSearchActionForUnreachableViews = YES;38 _shouldUseSearchActionForViewsUnderKeyboard = YES;39 _shouldUseSearchActionForViewsUnderAlertView = YES;40 _shouldUseSearchActionForViewsUnderPopover = YES;
grey_accessibilityLabel
Using AI Code Generation
1NSString *label = @"Search";2GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];3[interaction performAction:grey_tap()];4NSString *label = @"Search";5GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];6[interaction performAction:grey_tap()];7NSString *label = @"Search";8GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];9[interaction performAction:grey_tap()];10NSString *label = @"Search";11GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];12[interaction performAction:grey_tap()];13NSString *label = @"Search";14GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];15[interaction performAction:grey_tap()];16NSString *label = @"Search";17GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];18[interaction performAction:grey_tap()];19NSString *label = @"Search";20GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];21[interaction performAction:grey_tap()];22NSString *label = @"Search";23GREYElementInteraction *interaction = [EarlGrey selectElementWithMatcher:grey_accessibilityLabel(label)];24[interaction performAction:grey_tap()];25NSString *label = @"Search";
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!