Files
custom_wda/WebDriverAgentTests/IntegrationTests/FBPickerWheelSelectTests.m

56 lines
1.6 KiB
Mathematica
Raw Permalink Normal View History

2026-02-03 16:52:44 +08:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <XCTest/XCTest.h>
#import "FBIntegrationTestCase.h"
#import "XCUIElement+FBPickerWheel.h"
#import "XCUIElement+FBWebDriverAttributes.h"
#import "FBXCodeCompatibility.h"
@interface FBPickerWheelSelectTests : FBIntegrationTestCase
@end
@implementation FBPickerWheelSelectTests
static const CGFloat DEFAULT_OFFSET = (CGFloat)0.2;
- (void)setUp
{
[super setUp];
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
[self launchApplication];
[self goToAttributesPage];
});
}
- (void)testSelectNextPickerValue
{
XCUIElement *element = self.testedApplication.pickerWheels.allElementsBoundByIndex.firstObject;
XCTAssertTrue(element.exists);
XCTAssertEqualObjects(element.wdType, @"XCUIElementTypePickerWheel");
NSError *error;
NSString *previousValue = element.wdValue;
XCTAssertTrue([element fb_selectNextOptionWithOffset:DEFAULT_OFFSET error:&error]);
XCTAssertNotEqualObjects(previousValue, element.wdValue);
}
- (void)testSelectPreviousPickerValue
{
XCUIElement *element = [self.testedApplication.pickerWheels elementBoundByIndex:1];
XCTAssertTrue(element.exists);
XCTAssertEqualObjects(element.wdType, @"XCUIElementTypePickerWheel");
NSError *error;
NSString *previousValue = element.wdValue;
XCTAssertTrue([element fb_selectPreviousOptionWithOffset:DEFAULT_OFFSET error:&error]);
XCTAssertNotEqualObjects(previousValue, element.wdValue);
}
@end