使用Chromedriver在Outlook Office上找到“发送项目”

时间:2019-07-10 18:59:41

标签: python selenium selenium-chromedriver

嗨,我想在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()

请帮助

1 个答案:

答案 0 :(得分:1)

此元素没有这样的链接文本。将xpath用于New Group,可以与我的私人办公室进行100%的检查(请参见屏幕截图)

driver.find_element(By.XPATH, '//div[@title='New group']')

enter image description here