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

前端 未结 3 1485
情书的邮戳
情书的邮戳 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:47

    I've been using driver.find_element_by_tag_name("cite").click() in python3 which has worked for me. However if you just want the link to the top search result it would be faster to use the requests and BeautifulSoup libraries as shown below

    #!/usr/bin/env python3
    import requests
    from bs4 import BeautifulSoup
    url = 'http://www.google.com/search?q=something'
    page = requests.get(url)
    soup = BeautifulSoup(page.text, "html.parser")
    print(soup.find('cite').text)
    

提交回复
热议问题