English 中文(简体)
WebdriverIO Tutorial

Selected Reading

WebdriverIO - Class Name Locator
  • 时间:2024-03-18 19:23:02

WebdriverIO - Class Name Locator


Previous Page Next Page  

一旦我们浏览一个网页,我们就必须与网页上的现有网站进行互动,例如点击连接/布顿,进入一个信箱内的案文,从而完成我们的自动化测试。

为此,我们的首要任务是确定这一要素。 我们可以使用类别名称作为识别要素。 它是一个非常有用的定位器,比Xpath更快地进行自动化测试。

在《网络用户代码》中,我们可选择具体指明以下格式要素的类别名称属性的价值:


$( =.value of class attribute )

或者,我们可以将这一表述放在如下变量中:


const p = $( =.value of class attribute )

让我们确定以下形象中所强调的案文并获取案文——

Comparison to Xpath

以上图像中强调的内容按类别划分为标题。

《守则》的实施如下:


// test suite name
describe( Tutorialspoint apppcation , function(){
   //test case
   it( Identify element with Class Name , function(){        
      // launch url
      browser.url( https://www.tutorialspoint.com/about/about_careers.htm )
      //identify element with Class Name then obtain text
      console.log($(".heading").getText() + " - is the text.")
   });
});

档案——由以下指挥部存档:


npx wdio run wdio.conf.js

在题为“Wdio.conf.js案”的章节和题为“编造档案”的章节中详细讨论了如何建立汇编档案的细节。 以下屏幕将登在你的电脑上:

Code Implementation

指挥工作成功执行后,该要素的案文——有关图西里点的印本在奥索尔。

Advertisements