selenium-webdrive tag

8 questions


1 answers
348 views
0
Crawling processing for missing material

HelloI'm a novice office worker who starts Python.Web crawling on the journal of the paper.I think the package I'm using will be selenium and beautiful soup 4.About the paper page in the journalThe ti...


1 answers
371 views
0
Data crawling question!

I'm practicing crawling the store information (store name, address, number) of Goobne Chicken and saving it as a csv fileGoobne Chicken's web structure (tags) is getting stuck because I don't understa...


1 answers
84 views
0
Selenium.WebDriver is trying to access the HTML source of the Web element

I'm using Python binding to spin the Selenium web driver.from selenium import webdriverwd = webdriver.Firefox()Here I know this much, but I still don't know how to view the element source.lem.source #...


1 answers
86 views
0
Please help me to click on Google's favorite site with Python selenium

url = 'site url'driver.get(url)# I'll connect it like thispage = driver.page_sourcehtml = BeautifulSoup(page, 'html.parser')find_tag = html.findAll('h3')# h3 tag is the name of the sites that are expo...


1 answers
84 views
0
Inquire the webdriver.get function in Python Selenium (login to Naver and crawl)

It works normally from the code below to the login, but the last get function is not executed and ends.But that doesn't mean there's an error message.What's the reason?drv.get(https://nid.naver.com/ni...


1 answers
171 views
0
I'm curious about Python curling using selenium.

I'd like to use Selenium to read comments from Naver News.Currently using Python 3.4 and Windows 8.1 64bit.Currently, Naver News' comments can only be viewed by clicking on the More window, and before...


1 answers
129 views
0
How can I solve the problem of not being able to read the data when I crawl the web with Beautiful Soup and selenium?

from bs4 import BeautifulSoupfrom selenium import webdriverdriver = webdriver.Firefox()driver.get(http://ntry.com/#/stats/ladder/date.php?date=2014-01-04)html = driver.page_sourcesoup = BeautifulSoup(...


1 answers
140 views
0
Crawling Questions Through Selenium

import seleniumfrom selenium import webdriverdef init_driver(): driver = webdriver.chrome('C:/Users/Who/chromedriver.exe') driver.wait = WebDriverWait(driver, 5) return driverTraceback (most recent ca...

2 years ago

© 2024 OneMinuteCode. All rights reserved.