An advanced Ethereum/EVM mobile wallet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
alpha-wallet-ios/TrustUITests/Screenshots.swift

43 lines
892 B

// Copyright SIX DAY LLC. All rights reserved.
import XCTest
class Screenshots: XCTestCase {
override func setUp() {
super.setUp()
let app = XCUIApplication()
setupSnapshot(app)
app.launch()
}
func testMakeScreenshots() {
let app = XCUIApplication()
snapshot("0Launch")
app.buttons["import-wallet"].tap()
snapshot("3ImportWallet")
sleep(3)
app.tabBars.buttons.element(boundBy: 1).tap()
sleep(1)
app.tabBars.buttons.element(boundBy: 0).tap()
app.buttons["send-button"].tap()
app.tables.textFields["amount-field"].tap()
snapshot("1SendRequest")
app.navigationBars.buttons.element(boundBy: 0).tap()
snapshot("4Transactions")
app.tabBars.buttons.element(boundBy: 1).tap()
snapshot("2Tokens")
}
}