blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
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.
43 lines
905 B
43 lines
905 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["createWalletButton"].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")
|
|
}
|
|
}
|
|
|