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
39 views
0
I want to scroll through the page and press the button while crawling using selenium

I'd like to get the webtoon details of Kakao webtoon.However, to view detailed information, you must enter the webtoon list and scroll through the page to create a work information button.When you run...

2 years ago

1 answers
45 views
0
Saving to Python Selenium Screenshot Variables

How do I save it to a variable without saving it as a screenshot file?I'd like to access the website, take a screenshot, save it as a variable, not save it as a file, and register it as an attachment ...

2 years ago

1 answers
38 views
0
[Celenium] I don't know how to choose the link.

from selenium import webdriverpath= C:/Users\KIM/Downloads/chromedriver.exedriver = webdriver.Chrome(path)driver.get('https://komyojikyozo.web.fc2.com')# Find a frame iframes = driver.find_elements_by...

2 years ago

1 answers
108 views
0
Max retries exceeded with url & [SSL: CERTIFICATE_VERIFY_FAILED] impossible to get local issuer certificate error when using selenium and BS4

Hi, everyoneqpldocs.dla.mil/search/parts.aspx?qpl=1780We would like to extract the lists shown in the image below as text from the url above. (Since we are going to go through each list and perform ad...


1 answers
43 views
0
How to crawl web pages that change the active tab after page loading into Python?

Hello.Writing code for crawling.https://www.decantalo.com/kr/en/at-roca-brut-reserva.html#/1-volume-75_cl/111-year-2018If you run the URL above with a browser, you can see that the 2019 tab is activat...

2 years ago

1 answers
46 views
0
It doesn't go any further to make a macro out of selenium.

An announcement exists on the site here, but I tried to click on it, but it just didn't work.<ahref=javascript:void(0)>Notices</a> via driver.find_element_by_xpathI tried to connect this p...

2 years ago

2 answers
77 views
0
Python Infinite Repeating Question (Celenium)

import timen = 0while True: try: driver.found_element_by_xpath (//*[contains(text(), 'green light')]) n = 1+ n print(n) time(10) except: continueHello, I'm fiddling with Python at Selenium I'm p...

2 years ago

1 answers
82 views
0
Selenium Chrome Click Cancel "This Profile Is Managed by Your Organization"

I want to press the cancel button, but it's not a warning or pop-up, so I don't know how to handle itI'd appreciate it if you let me know

2 years ago

1 answers
56 views
0
Selenium crawling question

**********<Example Code>*********************from selenium import webdriverlink = [https://www.naver.com, https://www.google.com, https://13.59.54.26:443, https://www.daum.net]for i in link:driv...

2 years ago

1 answers
86 views
0
To import Python selenium child element text

There is a class with the class name list-item.tier-01.champ-item (green)Kids with 1 tier are list-item.tier-01...IChildren with two tiers are listed-item.tier-02...It looks like this.I want to bring ...

« - 11 -

© 2024 OneMinuteCode. All rights reserved.