Selenium에서 링크를 따라 가기 (python3)
id 와 text 의 예가 있습니다.
Arch Linux에서 소프트웨어 설치
sudo pacman -S python-selenium
sudo pacman -S geckodriver
follow_link.py
#! /usr/bin/python
# -*- coding: utf-8 -*-
#
# follow_link.py
#
# May/23/2021
#
# ------------------------------------------------------------------
from selenium.webdriver import Firefox
url = 'https://ekzemplaro.org'
browser = Firefox()
browser.get(url)
tag = browser.find_element_by_id('ekzemplaro')
tag.click()
#
tag = browser.find_element_by_link_text('Tips')
tag.click()
#
# ------------------------------------------------------------------
실행 방법
./follow_link.py
실행 결과
테스트한 버전입니다.
$ pacman -Q python-selenium
python-selenium 3.141.0-3
$ pacman -Q geckodriver
geckodriver 0.26.0-1
Reference
이 문제에 관하여(Selenium에서 링크를 따라 가기 (python3)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ekzemplaro/items/75cd3e31fd643861e5f3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)