Selenium에서 링크를 따라 가기 (python3)

Selenium에서 링크를 따라가는 샘플입니다.
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

좋은 웹페이지 즐겨찾기