Skip to content

Commit cdba6cc

Browse files
committed
tryout some tests
1 parent c4538b0 commit cdba6cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/helper/Appium_test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ describe('Appium', function () {
327327
assert.ok(vy.match(/vx: -\d\d000\.0 pps/), 'to be like 21000.0 pps')
328328
})
329329

330-
it('should react on touchPerform action', async () => {
330+
it('should react on touchPerform action @quick', async () => {
331331
await app.touchPerform([
332332
{
333333
action: 'press',
@@ -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)