如何使用python / Selenium获取数据时间戳

时间:2018-09-20 20:02:51

标签: python selenium

下面是我要从中提取数据时间戳的表的html。 enter image description here

该网页位于https://nl.soccerway.com/national/argentina/primera-division/20182019/regular-season/r47779/matches/?ICID=PL_3N_02

到目前为止,我尝试了在这里发现的各种变体,但似乎没有任何效果。有人可以帮我提取(例如)1536962400。所以换句话说,我想提取表的每个数据时间戳值。任何建议都值得欢迎!我已经使用selenium / python从网站中提取表数据,但是数据时间戳始终会显示错误。

1 个答案:

答案 0 :(得分:0)

data-timestamp是tr元素的属性,您可以尝试以下方法:

element_list = driver.find_elements_by_xpath("//table[contains(@class,'matches')]/tbody/tr")
for items in element_list:
    print(items.get_attribute('data-timestamp'))