How to click on the first result on google using selenium python

前端 未结 3 1555
情书的邮戳
情书的邮戳 2021-01-03 06:23

I am trying to click on the first result on the google result. Here is my code where I am entering chennai craiglist which is read from csv file. So I am sure the first lin

3条回答
  •  春和景丽
    2021-01-03 06:27

    The xpath you have chosen is 'ok' but probably not the best.

    result = driver.find_elements_by_xpath("//ol[@id="rso"]/li")[0] //make a list of results and get the first one
    result.find_element_by_xpath("./div/h3/a").click() //click its href
    

提交回复
热议问题