硒查找元素-在列表中打印一项

时间:2019-06-14 17:02:37

标签: python

我是python的初学者,真的很难弄清这一件事。

HTML代码

<p class="hello">Red</p>
<p class="hello">Green</p>
<p class="hello">Blue</p>
<p class="hello">Purple</p>

我想使用Selenium从类名中获取所有元素。

for x in driver.find_elements_by_class_name('hello'):
    print(x.text)

此输出:
红色
绿色
蓝色
紫色

但是我只想输出“绿色”

所以我尝试了:

print(x.text[1])

但是这输出
e
r
l

0 个答案:

没有答案