so I'm really new to python and I wanna get my number of friends I got on a site named roblox for the sake of learning. This is where my code is right now:
from selenium import webdriver
ff = webdriver.FireFox()
ff.get("https://www.roblox.com/home")
element = driver.find_element_by_class("col-xs-12 section home-friends"[0])
I want to get the text "Friends (2)"
any ways of doing that?