首先你要有驱动,驱动的位置你要放对
python中用selenium包
selenium 是对浏览器操作的包
# 这是没有 ifram
from selenium import webdriver
from time import sleep
driver = webdriver.Firefox() # 打开狐火浏览器
driver.get('https://m.sunlands.com/92/CN/pc/cKH25h/index.html') # 打开尚德机构的主页
driver.implicitly_wait(5) # 隐式等待时间,打开火狐搜索尚德主页是要
#时间的,这个的等待的时间只要不大于 5 就不会报错
driver.find_element_by_xpath('/html/body/div[4]/header/div[2]/div/div/div/div/p/a[2]').click() # 点击咨询按钮
driver.find_element_by_xpath('/html/body/div[14]/div/div/div[3]/textarea').click() #点击输入框
driver.find_element_by_xpath('/html/body/div[14]/div/div/div[3]/textarea').send_keys('你好') #输入内容
driver.find_element_by_xpath('/html/body/div[14]/div/div/div[3]/span[3]').click() # 点击发送
# 这是有 ifram的
# 原始界面是第一层的 html 要是有一个标签是 ifram 那他就是一个小的 html 内嵌到最外层的 html
from selenium import webdriver
from time import sleep
driver = webdriver.Firefox() # 打开狐火浏览器
driver.get('http://sh.tedu.cn/zt/?TARENA_shq-sh-BD-PC-PZ-zh-pp-1792079-000-180111000000_TARENA&bdpz-pc') # 打开达内机构的主页
sleep(1)
# iframe 是页面内嵌的另一个 html 要进去操作,就要先进到这层的 html
first_ifram = driver.find_element_by_id('iframe_company_mini')
driver.switch_to.frame(first_ifram) # 切 html 层的语法是 driver.switch_to.frame()
sleep(2)
second_ifram = driver.find_element_by_xpath('/html/body/div[4]/div/div/div[3]/div/div[5]/div[3]/div[3]/div/div[2]/iframe')
driver.switch_to.frame(second_ifram) # 达内的聊天输入框是在第三层的 html 中的,就要在切一次
sleep(2)
driver.find_element_by_xpath('/html/body').click()
driver.find_element_by_xpath('/html/body').send_keys('你好')
driver.switch_to.default_content() #现在要点击发送消息按钮了,但是他是在第二层的,就要先切到最外层
driver.switch_to.frame(first_ifram) # 从最外面切到第二层
driver.find_element_by_xpath('/html/body/div[4]/div/div/div[3]/div/div[5]/div[3]/div[3]/a/i').click()