// Copyright © 2015 Abhishek Banthia import XCTest class CopyToClipboardTests: XCTestCase { var app: XCUIApplication! override func setUp() { continueAfterFailure = false app = XCUIApplication() app.launch() if app.tables["FloatingTableView"].exists == false { app.tapMenubarIcon() app.buttons["Pin"].click() } } override func tearDownWithError() throws { app = nil } func testFullCopy() throws { let cellCount = app.tables["FloatingTableView"].cells.count var clipboardValue = String() for cellIndex in 0..