嗨,我想在Office365的菜单上单击新建组。 在使用硒的chromedriver上 但是当我运行脚本时,它无法正常工作 以下是“ {New}”按钮位于http://prntscr.com/od9pec
上的位置和方式 from selenium import webdriver
import time
#after login and browsing to the home page
time.sleep(3)
nwgroup=driver.find_element_by_link_text('New group')
time.sleep(4)
nwgroup.click()
请帮助