Python Forum
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help me make a comment on youtube
#11
OK i figured it out.
The elements change based on whether its clicked or not. So you have to click it to get contenteditable-root ID available. Which before its clicked is ID "placeholder-area".
    def find_comment_box(self):
        try:
            print("Passing URL to Browser...")
            self.browser.get(self.url)
            bg = self.browser.find_element_by_css_selector('body')
            for _ in range(3):
                bg.send_keys(Keys.PAGE_DOWN)
                time.sleep(.5)
            for _ in range(3):
                bg.send_keys(Keys.PAGE_DOWN)
                time.sleep(.5)
            print("Fetching comment box...")
     
            self.comment_box = self.browser.find_element_by_id('placeholder-area')
            self.comment_box.click()
            time.sleep(2)
            
            #self.comment_box = self.browser.find_element_by_xpath("//yt-formatted-string[contains(text(),'Add a public comment...')]")
            self.comment_box = self.browser.find_element_by_id('contenteditable-root')
            self.comment_box.send_keys('test')
Also you can make your script quicker by using WebDriverWait instead of time.sleep(). This will wait until its ready instead of an arbitrary number you put into time.sleep which actually makes it much faster. Scrolling is the only time i use time.sleep.
Recommended Tutorials:
Reply


Messages In This Thread
Help me make a comment on youtube - by caarsonr - Jun-20-2019, 10:15 PM
RE: Help me make a comment on youtube - by caarsonr - Jun-20-2019, 11:26 PM
RE: Help me make a comment on youtube - by caarsonr - Jun-21-2019, 01:10 AM
RE: Help me make a comment on youtube - by caarsonr - Jun-21-2019, 05:17 PM
RE: Help me make a comment on youtube - by caarsonr - Jun-21-2019, 07:49 PM
RE: Help me make a comment on youtube - by caarsonr - Jun-22-2019, 04:48 PM
RE: Help me make a comment on youtube - by metulburr - Jun-22-2019, 09:33 PM
RE: Help me make a comment on youtube - by caarsonr - Jun-22-2019, 11:52 PM
RE: Help me make a comment on youtube - by caarsonr - Jun-23-2019, 02:47 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  parsing comment tag ian 2 3,010 Jan-22-2018, 03:38 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020