本文介绍了Selenium WebDriver中的getText()和getAttribute()有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

两者都用于获取标记之间的WebElement值.

Both are used to get the WebElement value in between tags.

我的假设正确吗?如果有误,请详细说明.

Is my assumption right? If wrong, please elaborate.

推荐答案

  <input attr1='a' attr2='b' attr3='c'>foo</input>

getAttribute(attr1)会得到'a'

getAttribute(attr2)会得到'b'

getAttribute(attr3)会得到'c'

getText()没有参数,您只能获取'foo'

getText() with no parameter you can only get 'foo'

这篇关于Selenium WebDriver中的getText()和getAttribute()有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 22:27