Add thread/conversation tests

This commit is contained in:
Zed
2019-07-01 07:12:46 +02:00
parent b982259f1d
commit baa734b32e
2 changed files with 65 additions and 0 deletions

View File

@@ -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'