Skip to content

Commit 1b5da80

Browse files
committed
tryout some tests
1 parent cdba6cc commit 1b5da80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/helper/Appium_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ describe('Appium', function () {
469469

470470
describe('see element : #seeElement, #dontSeeElement', () => {
471471
it('should check visible elements on page @quick', async () => {
472-
//await app.resetApp()
472+
await app.resetApp()
473473
await app.seeElement('//android.widget.Button[@content-desc = "buttonTestCD"]')
474474
await app.dontSeeElement('#something-beyond')
475475
await app.dontSeeElement('//input[@id="something-beyond"]')
@@ -478,13 +478,13 @@ describe('Appium', function () {
478478

479479
describe('#click @quick', () => {
480480
it('should click by accessibility id', async () => {
481-
//await app.resetApp()
481+
await app.resetApp()
482482
await app.tap('~startUserRegistrationCD')
483483
await app.seeElement('//android.widget.TextView[@content-desc="label_usernameCD"]')
484484
})
485485

486486
it('should click by xpath', async () => {
487-
//await app.resetApp()
487+
await app.resetApp()
488488
await app.tap('//android.widget.ImageButton[@content-desc = "startUserRegistrationCD"]')
489489
await app.seeElement('//android.widget.TextView[@content-desc="label_usernameCD"]')
490490
})

0 commit comments

Comments
 (0)