“Text holen” Code-Antworten

Text holen

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

Text holen

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

Ähnliche Antworten wie “Text holen”

Fragen ähnlich wie “Text holen”

Weitere verwandte Antworten zu “Text holen” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen