我想使用python将网站中的文本另存为变量。
driver.find_element_by_class_name('plaint').storetext()
我不知道该怎么做。 谢谢
答案 0 :(得分:1)
为什么不尝试使用硒来存储文本,而是尝试获取信息并将其存储到您自己的变量中。
element_to_store = driver.find_element_by_class_name("class name").text()
可以说您使用类名和.text()
来查找元素及其文本值。一旦使用element_to_store
查找文本,就可以使用element_to_store
并在需要时调用它,因为它的值就是所搜索元素的.text()
字符串。