Here is the code of the web
The xpath of search-results-list container grid is
//[@id="product_type_products_list"]/div/div[2]/div
and the xpath of result is
//*[@id="product_type_products_list"]/div/div[2]/div/div[1]
I have try using :
elems = driver.find_elements_by_xpath('//*[@id="product_type_products_list"]/div/div[2]/div')
url = driver.find_element_by_link_text(elems[0].text).get_attribute("href")
print(url)
this give the link to the beginning of the web.
Thank you for your consideration.

