| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**
- * 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. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
- #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
|