mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 14:49:32 +00:00
Add thread/conversation tests
This commit is contained in:
parent
b982259f1d
commit
baa734b32e
2 changed files with 65 additions and 0 deletions
|
|
@ -28,6 +28,16 @@ class Timeline(object):
|
|||
protected = '.timeline-protected'
|
||||
|
||||
|
||||
class Conversation(object):
|
||||
main = '.main-tweet'
|
||||
before = '.before-tweet'
|
||||
after = '.after-tweet'
|
||||
replies = '.replies'
|
||||
thread = '.reply'
|
||||
tweet = '.status-el'
|
||||
tweet_text = '.status-content'
|
||||
|
||||
|
||||
class Poll(object):
|
||||
votes = '.poll-info'
|
||||
choice = '.poll-meter'
|
||||
|
|
|
|||
Loading…
Reference in a new issue