пытаясь передать результат запроса с помощью обещания, я получаю эту ошибку [0-0] (узел: 16336) UnhandledPromiseRejectionWarning - PullRequest
0 голосов
/ 17 апреля 2020

это сценарий тестирования

describe('contacts page test',  function(){
    it('creating a new contact ',  function(){
        browser.url('/')
        login.doLogin(configData.username, configData.password)
        contacts.createNewContact('contact')
    })
})

Функция createNewContact

 createNewContact = async (tableName)=>{
            console.log('inside createNewContact')
            //going to the contact page
            elementUtil.doClick(homePageElements.contactLink)
            elementUtil.doClick(homePageElements.secondaryContact)

            //clicking new button
            elementUtil.doClick(contactspageElements.newContactLink)

            var arr = []
            try{
                await db.retrieve(tableName).then(result=>{
                    arr = result
                    console.log('result')
                    console.log(result)
                }).catch(err=>{console.log(err)})
            }catch(err){
                console.log(err)
            }
            console.log('arr: ')
            console.log(arr)
            console.log(typeof arr[0].username)

            // //inserting values
            elementUtil.doPromiseSetValue(contactspageElements.userName, JSON.stringify(arr[0].username))
            elementUtil.doPromiseSetValue(contactspageElements.firstName, JSON.stringify(arr[0].firstname))
            elementUtil.doPromiseSetValue(contactspageElements.lastName, JSON.stringify(arr[0].lastname))
            console.log('reached the contact creation')
            //creating contact
            elementUtil.doClick(  contactspageElements.createContactButton ); 
            browser.pause(10000)
            //again goin to the contact page
            elementUtil.doClick(homePageElements.contactLink)
            elementUtil.doClick(homePageElements.secondaryContact)
            browser.pause(20000) 
        }

функция db.retrieve ()

retrieve (tableName){
        const connection = this.getConnection()
        connection.connect()
        console.log('inside retrieve')       
        return new Promise((resolve, reject)=>{
            connection.query(`select * from ${tableName}`, function(err, result){
                connection.end()
                if(err) reject(err)
                else resolve(result)
            })
        }) 
    }

и это ошибка i получаю

UnhandledPromiseRejectionWarning: TypeError: element.waitForDisplayed is not a function at ElementUtil.doClick (G:\javascript automation\New folder\wdio-test-framework\util\element.util.js:6:17)
at ContactsPage.createNewContact (G:\javascript automation\New folder\wdio-test-framework\src\pages\contacts.page.js:41:21)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (internal/process/task_queues.js:97:5)
(node:15156) UnhandledPromiseRejectionWarning: Unhandled promise rejection. 
This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode).
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...