find right xpath - DanielMueller1309/Python GitHub Wiki
To find the right xpath for pythons selenium command browser.find_element_by_xpath("html/body/div[2]/div[2]") you can open ChromeDevTools and search in tab elements for example: /html/body/div and the finded path is highlighted to see if the path is the right
also you have to decide between
Relative XPath: //div[@class='featured-box cloumnsize1']//h4[1]//b[1]
and
Absolute XPath: /html/body/div[2]/div[1]/div/h4[1]/b/html[1]/body[1]/div[2]/div[1]/div[1]/h4[1]/b[1]