#coding=utf-8
from selenium import webdriver
import time
import os
os.environ["webdriver.firefox.driver"]="C:\Program Files\Mozilla Firefox\firefox.exe"
driver=webdriver.Firefox(executable_path=‘c:\\geckodriver‘)
driver.get("http://www.sogou.com")
driver.find_element_by_id(‘query‘).clear()
driver.find_element_by_id(‘query‘).send_keys("automation tester")
driver.find_element_by_id(‘stb‘).click()
time.sleep(3)
driver.quit()
可以看到firefox浏览器自动启动,访问搜狗网站,自动搜索automation tester关键字等动作。。。
然后自动退出了
比较神奇啊。。。。
原文地址:https://www.cnblogs.com/xiaxiaoxu/p/8910151.html
时间: 2024-10-01 07:38:03