driver = webdriver.Chrome() URL= 'https://modernhousevn.com/collections/new-arrival/products/giuong-ngu-mh-21' driver.get(URL) sleep(1) des = wait.until(EC.visibility_of_element_located((By.XPATH, "//strong[text()='Chất liệu :']/.."))).get_attribute('innerText') print(des) My expected result is ['Khung : Khung Gỗ thông - Vạt giường gỗ thông', 'Da PU hoặc vải bố cao cấp nhập khẩu', 'Mousse : D40/35 theo tiêu chuẩn xuất khẩu']

wait untilon a separate line and then afterwards rundes = driver.find_element(By.XPATH)...