I am using Xpath and having trouble pulling out information I need.
It is basically a Price - Subtotal. The HTML Image is attached, and the xpath code I am using is below. What am I missing? At the end I am looking to get the price value into a string.
w = driver.find_element_by_xpath('//*[@id="order-summary"]/section/section[3]/div/table/tbody/tr[2]/td/span')
print(w.text())