I am trying to get the ruffle player id of a game by
profile = webdriver.FirefoxProfile()
profile.set_preference("plugin.state.flash", 2)
driver = webdriver.Firefox(profile, options=options)
driver.get("https://www.kongregate.com/games/Paulussss/bubbles-shooter/")
game_board_element = driver.find_element_by_css_selector("#gamers > ruffle-player:nth-child(1)")
but selenium gives error
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: #gamers > ruffle-player:nth-child(1)
I am trying to figure it out and I don't know about it. Any help?