File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 } )
You can’t perform that action at this time.
0 commit comments