“Zdobądź tekst” Kod odpowiedzi

Zdobądź tekst

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

Zdobądź tekst

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

Odpowiedzi podobne do “Zdobądź tekst”

Pytania podobne do “Zdobądź tekst”

Więcej pokrewnych odpowiedzi na “Zdobądź tekst” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu