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
121 views
0
I would like to inquire about Google Scraping.(Beginner warning)

Hello, I would like to search for Daepoo in 'Google' as below and extract the movie title by putting it in a variable.Q1. Why does the result value come out as None? Q2. The second selenium module bel...


1 answers
35 views
0
I'm trying to log in to Python Selenium, but I can't click because of the pop-up image.

You are about to write a code that automatically logs in to the

2 years ago

1 answers
41 views
0
I wonder how I can replace send_keys in Python selenium.

Text input via send_keys in python selenium is too slow.You're repeating the task of importing from a text file and typing about 3000 bytes at a timeYou need a quick way to copy and paste from text.Wh...

2 years ago

1 answers
41 views
0
Error when working on dynamic pages in selenium.

I have to do repetitive work on the web page, so I'm trying to make it work automatically with selenium.The target web service seems to be a way to dynamically load html elements on the page. (I don't...

2 years ago

1 answers
40 views
0
I'm crawling with selenium and want to print properties...

p_elem = driver.find_element_by_xpath(/html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div/img)data = p_elem.textprint (data)driver.quit()I want to print urls, which is the img value of the webtoon...

2 years ago

1 answers
42 views
0
I'm creating a login automation code for the site I signed up for Python Selenium, how do I check if I have an Internet connection?

Creating a login automation code for the site you subscribed to Python Selenium.By the way, if you try to log in while the Internet is not connected, an error will occur. In this case, check the curre...

2 years ago

1 answers
43 views
0
Save copy from selenium to mouse

I entered a specific site with selenium and pressed copy to the right mouse I wanted to save this in a txt file, so I tried many ways, but it didn't work, so I'm looking for help. driver.close()# Righ...

2 years ago

1 answers
84 views
0
What should I do when I have # instead of / in httpurl when I crawl Python?

Hello, everyone I'm a beginner who's been doing Python crawl lately.ㅠ


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
106 views
0
Python Selenium error and iframe tag content is missing from the source loaded by the web driver.

There is an iframe tag on the website I am testing and I need to click the button (a tag) that exists in this tag. If you look at it with the developer tool in your browser, you can see that it contai...

« - 7 - »

© 2024 OneMinuteCode. All rights reserved.