通过字段名称从表中提取数据 Xpath,Python

问题描述

我想从此页面https://mbasic.facebook.com/kristina.layus中提取数据 有一个两行的表格“住所”

Current city --- Moscow,Russia
Home town    --- Saint Petersburg,Russia

我可以借助完整的xpath提取数据(提取的数据为“ Moscow,Russia”):

/html/body/div/div/div[2]/div/div[1]/div[4]/div/div/div[1]/div/table/tbody/tr/td[2]/div/a

但是我想借助表中的名称提取数据。我尝试过了

//div[@id='living']//div[@title='Current City']//a/text()

但是收到错误

NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//div[@id='living']//div[@title='Current City']//a/text()"}
  (Session info: chrome=84.0.4147.89)

我的代码

from selenium import webdriver
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

class FacebookParser:
    LOGIN_URL = 'https://www.facebook.com/login.php'

    def __init__(self,login,password):
        chrome_options = webdriver.ChromeOptions()
        prefs = {"profile.default_content_setting_values.notifications": 2}
        chrome_options.add_experimental_option("prefs",prefs)

        self.driver = webdriver.Chrome(chrome_options=chrome_options)
        self.wait = WebDriverWait(self.driver,10)
        self.login(login,password)

    def login(self,password):
        self.driver.get(self.LOGIN_URL)

        # wait for the login page to load
        self.wait.until(EC.visibility_of_element_located((By.ID,"email")))

        self.driver.find_element_by_id('email').send_keys(login)
        self.driver.find_element_by_id('pass').send_keys(password)
        self.driver.find_element_by_id('loginbutton').click()
    
    def get_user_by_id(self,id):
        self.driver.get(BASIC_URL + 'profile.php?id=' + str(id))
        
    def get_user_by_url(self,url):
        self.driver.get(url)
    
    def find_element_by_xpath_safe(self,path):
        try:
            return parser.driver.find_element_by_xpath(path)
        except:
            return None

    def get_first_name(self):
        res = self.find_element_by_xpath_safe('//span/div/span/strong')
        if res:
            vec = res.text.split()
            if len(vec) > 0:
                return vec[0]
            else:
                print("Can't split {}".format(res.text))
        return ""

    def get_second_name(self):
        res = self.find_element_by_xpath_safe('//span/div/span/strong')
        if res:
            vec = res.text.split()
            if len(vec) > 1:
                return vec[1]
            else:
                print("Can't split {}".format(res.text))
        return ""
    
    def get_curr_city(self):
        res = self.find_element_by_xpath_safe('/html/body/div/div/div[2]/div/div[1]/div[4]/div/div/div[1]/div/table/tbody/tr/td[2]/div/a')
        if res:
            return res.text
        return ""
    
    def get_home_town(self):
        res = self.find_element_by_xpath_safe('/html/body/div/div/div[2]/div/div[1]/div[4]/div/div/div[2]/div/table/tbody/tr/td[2]/div/a')
        if res:
            return res.text
        return ""
        

#####################################
LOGIN = '----.com'
PASSWORD = '----'
BASIC_URL = 'https://mbasic.facebook.com/'
#####################################

parser = FacebookParser(login=LOGIN,password=PASSWORD)
parser.driver.get("https://mbasic.facebook.com/kristina.layus")


parser.driver.get("https://mbasic.facebook.com/kristina.layus")
print(parser.get_curr_city())

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)