mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Redundantly skip notices
This commit is contained in:
parent
119c0fdecf
commit
9276fea6bc
@ -6,23 +6,7 @@ async function runFirstTimeUsageTest (assert, done) {
|
|||||||
|
|
||||||
const app = $('#app-content')
|
const app = $('#app-content')
|
||||||
|
|
||||||
// recurse notices
|
skipNotices()
|
||||||
while (true) {
|
|
||||||
const button = app.find('button')
|
|
||||||
if (button && button.html() === 'Accept') {
|
|
||||||
// still notices to accept
|
|
||||||
const termsPage = app.find('.markdown')[0]
|
|
||||||
termsPage.scrollTop = termsPage.scrollHeight
|
|
||||||
await timeout()
|
|
||||||
console.log('Clearing notice')
|
|
||||||
button.click()
|
|
||||||
await timeout()
|
|
||||||
} else {
|
|
||||||
// exit loop
|
|
||||||
console.log('No more notices...')
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await timeout()
|
await timeout()
|
||||||
|
|
||||||
@ -57,14 +41,7 @@ async function runFirstTimeUsageTest (assert, done) {
|
|||||||
|
|
||||||
await timeout(1000)
|
await timeout(1000)
|
||||||
|
|
||||||
// Skip notices:
|
skipNotices()
|
||||||
let detail = app.find('.tou__title')[0]
|
|
||||||
button = app.find('button')[0]
|
|
||||||
if (button && button.html() === 'Accept') {
|
|
||||||
app.find('button').click()
|
|
||||||
await timeout(1000)
|
|
||||||
button = app.find('button')
|
|
||||||
}
|
|
||||||
|
|
||||||
// secret backup phrase
|
// secret backup phrase
|
||||||
const seedTitle = app.find('.backup-phrase__title')[0]
|
const seedTitle = app.find('.backup-phrase__title')[0]
|
||||||
@ -157,3 +134,23 @@ function timeout (time) {
|
|||||||
setTimeout(resolve, time || 1500)
|
setTimeout(resolve, time || 1500)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function skipNotices () {
|
||||||
|
while (true) {
|
||||||
|
const button = app.find('button')
|
||||||
|
if (button && button.html() === 'Accept') {
|
||||||
|
// still notices to accept
|
||||||
|
const termsPage = app.find('.markdown')[0]
|
||||||
|
termsPage.scrollTop = termsPage.scrollHeight
|
||||||
|
await timeout()
|
||||||
|
console.log('Clearing notice')
|
||||||
|
button.click()
|
||||||
|
await timeout()
|
||||||
|
} else {
|
||||||
|
console.dir(button)
|
||||||
|
// exit loop
|
||||||
|
console.log('No more notices...')
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user