selenium tag

Selenium is an open source umbrella project for a range of tools and libraries aimed at supporting browser automation. It provides a playback tool for authoring functional tests across most modern web browsers, without the need to learn a test scripting language (Selenium IDE). It also provides a test domain-specific language (Selenese) to write tests in a number of popular programming languages, including JavaScript (Node.js), C#, Groovy, Java, Perl, PHP, Python, Ruby and Scala. Selenium runs on Windows, Linux, and macOS. It is open-source software released under the Apache License 2.0.

Reference: WIKIPEDIA

110 questions


1 answers
37 views
0
Question when extracting the src attribute value of the img tag with Python selenium, if the attribute value contains Korean

When extracting the src attribute value of the img tag with Python selenium, if the attribute value contains Korean Hangul is not displayed properly, and only the Korean part (image file name) is disp...

2 years ago

1 answers
57 views
0
Python selenium crawling question! (Modify URL)

I'm trying to crawl a product that meets the conditions on a siteI wrote the code using selenium because it seemed to dynamically load the product list.The structure of this site shows the url and the...

2 years ago

1 answers
39 views
0
I have a question about Python selenium

Python Selenium created a function that parses web data (Google headless mode). When I checked the print, it was self.Add driver.get_screenshot_as_file('1.png') to take a screenshot and parse it.It wo...

2 years ago

1 answers
71 views
0
I have been having a headache for a week because of Python dynamic page crawling.Masters, please help me crying

While crawling data through Python, I want to ask you something about dynamic page crawling.Most of the other sites have been crawled through requests, beautiful soup, and seleniumhttp://www.searchain...


1 answers
35 views
0
Python selenium element question

From find_element_by_partial_link_text What is the partial link text?I know xpath, selector, id, etc, but I'm curious about that.

2 years ago

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
64 views
0
To run python functions simultaneously (parallel)

I made selenium crawl using Python and am using it.As a result, the implementation structure is def function_name(url): Function Contents It looks like above. url = 'www.siteurl.com'function_name(url)...


1 answers
35 views
0
How to create a chrome window again after closing the chrome window with webdriver.close() in Python selenium Question

When you run driver = webdriver.chrome(), Chrome driver executable (?) window (dos-like window on a black screen) and Chrome browser window It's on the screen together.Since then, only the Chrome brow...

2 years ago

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
44 views
0
It says that element cannot be found in selenium.

selenium.common.exceptions.NoSuchElementException: Message: Unable to find element with xpath == //li/a[@id='a_0111060000']Or other errors.Windows 10,Python 3 (in anaconda) environment You must use th...

2 years ago
« - 8 - »

© 2024 OneMinuteCode. All rights reserved.