Get the number of total comments in the post
(browser, logger)
| 346 | |
| 347 | |
| 348 | def get_comments_count(browser, logger): |
| 349 | """Get the number of total comments in the post""" |
| 350 | |
| 351 | comments_count = getMediaData("edge_media_preview_comment.count", browser) |
| 352 | return comments_count, "Success" |
| 353 | |
| 354 | |
| 355 | def verify_commented_image(browser, link, owner, logger): |
no test coverage detected