Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Searching yahoo with selenium
#14
(Oct-12-2018, 09:50 PM)Truman Wrote: p.s. now running snippsat's code, it only opens yahoo page.
Nope it also search(it's your code i only added agree push button),if add some more lines i can get links from search.
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import bs4
import time

browser = webdriver.Chrome()
browser.get('http://www.yahoo.com')
assert 'Yahoo' in browser.title

agree =  browser.find_element_by_xpath('/html/body/div[1]/div[2]/div[4]/div/div[2]/form[1]/div/input')
agree.click()
elem = browser.find_element_by_name('p') # find the search box
res = elem.send_keys('seleniumhq' + Keys.RETURN)
#print(repr(res))
time.sleep(5)
soup = bs4.BeautifulSoup(browser.page_source, "lxml")
link_a = soup.find_all('a', class_=" ac-algo fz-l ac-21th lh-24")
for link in link_a:
    print(link.text)
Output:
Selenium - Web Browser Automation Downloads - Selenium Selenium (software) - Wikipedia Selenium (@SeleniumHQ) | Twitter Selenium WebDriver - docs.seleniumhq.org SeleniumHQ/selenium - GitHub Selenium Projects Selenium Sponsors Selenium IDE Selenium Documentation — Selenium Documentation
Reply


Messages In This Thread
Searching yahoo with selenium - by Truman - Oct-10-2018, 11:54 PM
RE: Searching yahoo with selenium - by Larz60+ - Oct-11-2018, 02:53 AM
RE: Searching yahoo with selenium - by Truman - Oct-11-2018, 09:09 PM
RE: Searching yahoo with selenium - by nilamo - Oct-11-2018, 09:20 PM
RE: Searching yahoo with selenium - by Truman - Oct-11-2018, 09:36 PM
RE: Searching yahoo with selenium - by nilamo - Oct-11-2018, 09:37 PM
RE: Searching yahoo with selenium - by Truman - Oct-11-2018, 09:57 PM
RE: Searching yahoo with selenium - by nilamo - Oct-11-2018, 10:02 PM
RE: Searching yahoo with selenium - by Truman - Oct-11-2018, 10:10 PM
RE: Searching yahoo with selenium - by snippsat - Oct-12-2018, 02:23 AM
RE: Searching yahoo with selenium - by Truman - Oct-12-2018, 09:50 PM
RE: Searching yahoo with selenium - by Larz60+ - Oct-12-2018, 11:00 PM
RE: Searching yahoo with selenium - by Truman - Oct-12-2018, 11:13 PM
RE: Searching yahoo with selenium - by metulburr - Oct-12-2018, 11:02 PM
RE: Searching yahoo with selenium - by snippsat - Oct-12-2018, 11:09 PM
RE: Searching yahoo with selenium - by snippsat - Oct-13-2018, 12:50 AM
RE: Searching yahoo with selenium - by Truman - Oct-13-2018, 09:45 PM
RE: Searching yahoo with selenium - by snippsat - Oct-13-2018, 10:44 PM
RE: Searching yahoo with selenium - by Truman - Oct-13-2018, 10:59 PM
RE: Searching yahoo with selenium - by snippsat - Oct-13-2018, 11:56 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Web Scraping with Yahoo Finance miloellison 1 2,151 Jul-03-2020, 11:12 PM
Last Post: Larz60+
  getting financial data from yahoo finance asiaphone12 7 7,266 Jun-15-2020, 05:49 AM
Last Post: mick_g
  Scrap Yahoo Finance using BS4 mr_byte31 7 6,438 Aug-24-2018, 02:50 PM
Last Post: Larz60+
  webscraping yahoo data - custom date implementation Jens89 4 5,292 Jun-19-2018, 08:02 AM
Last Post: Jens89
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 3,799 Nov-03-2017, 08:41 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020