“Получите текст” Ответ

Получите текст

const assert = require('assert')

describe('v5.webdriver.io', () => {

    it('should demonstrate the gettext function', async () => {
       await browser.url('https://v5.webdriver.io')
       
       const blogButton = await $('[href="/blog/"]');
      
       console.log( "text for element:" +await blogButton.getText());

      
    })
})
Vivacious Vicuña

Получите текст

const assert = require('assert')

describe('v5.webdriver.io', () => {

    it('should demonstrate the gettext function', async () => {
       await browser.url('https://v5.webdriver.io')
       
       const blogButton = await $('[href="/blog/"]');

       const xblogButton = await blogButton.getText()
       console.log( "text for element:" +xblogButton);

      
    })
})
Vivacious Vicuña

Ответы похожие на “Получите текст”

Вопросы похожие на “Получите текст”

Больше похожих ответов на “Получите текст” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования