-
Notifications
You must be signed in to change notification settings - Fork 2
/
pythonclub.py
37 lines (26 loc) · 911 Bytes
/
pythonclub.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# coding: utf-8
"""
Exemplo da Parte I.
Objetivo: Listar os posts do Python Club.
"""
from selenium import webdriver
# Criar instância do navegador
firefox = webdriver.Firefox()
# Abrir a página do Python Club
firefox.get('http://pythonclub.com.br/')
# Seleciono todos os elementos que possuem a class post
posts = firefox.find_elements_by_class_name('post')
# Para cada post printar as informações
for post in posts:
# O elemento `a` com a class `post-title`
# contém todas as informações que queremos mostrar
post_title = post.find_element_by_class_name('post-title')
# `get_attribute` serve para extrair qualquer atributo do elemento
post_link = post_title.get_attribute('href')
# printar informações
print u"""Títutlo: {titulo}, \nLink: {link}""".format(
titulo=post_title.text,
link=post_link
)
# Fechar navegador
firefox.quit()