import os import time import platform from selenium import webdriver as webdriver1 from selenium.webdriver.ie.options import Options from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from config import global_wait,root_url,use_edge,iedriver_path,edgedriver_path,chromedriver_path from public.basiclogger import LOGGING class BaseCase(object): '''基础用例''' def get_web_driver(self,url,data=None,browser='ie'): if browser=='chrome': #if platform.system()=="Windows": # os.system(r'taskkill /f /im chrome.exe') #else: # os.system(r"ps aux |grep chrome|awk '{print $2}'|xargs -i kill {}") options = webdriver1.ChromeOptions() options.add_experimental_option('excludeSwitches', ['enable-logging']) self.driver = webdriver1.Chrome(executable_path=chromedriver_path,options=options) self.driver.get(url) self.driver.maximize_window() self.driver.implicitly_wait(global_wait) else: #启动IE之前先杀死电脑上所有的IE if use_edge: os.system(r'taskkill /f /im msedge.exe') else: os.system(r'taskkill /f /im iexplore.exe') if use_edge: file1=edgedriver_path else: file1=iedriver_path options = Options() options.ignore_protected_mode_settings = True options.ignore_zoom_level = True if use_edge: options.attach_to_edge_chrome = True options.edge_executable_path = r"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" else: options.add_argument('--user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko"') self.driver=webdriver1.Ie(executable_path=file1,options=options) self.driver.get(url) self.driver.maximize_window() self.driver.implicitly_wait(global_wait) def get_logger(self): #创建日志文件名 filename=self.data["case_name"]+'_'+time.strftime("%Y-%m-%d_%H-%M-%S") #保存连接 filename1=os.path.join(r'test_log',filename+r'.log') LOGGING1=LOGGING(log_name=filename,log_dir="test_log") self.logger=LOGGING1.logObject self.LOGGER=LOGGING1
时间: 2024-02-17 07:01:41 浏览: 319
在您提供的代码中,第一行需要将多个导入语句分开,即:
```
import os
import time
import platform
from selenium import webdriver as webdriver1
from selenium.webdriver.ie.options import Options
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from config import global_wait,root_url,use_edge,iedriver_path,edgedriver_path,chromedriver_path
from public.basiclogger import LOGGING
```
此外,我还注意到您的代码缩进存在问题,建议仔细检查缩进是否正确,以确保代码可以正确执行。
相关问题
from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By import csv import os import time import json import django import pandas as pd
你好,这段代码看起来是在使用 Selenium 和 Django,可能是在进行网页爬虫或者自动化测试的开发。其中:
- `webdriver` 模块是 Selenium 的核心模块,用于驱动浏览器进行自动化操作;
- `Service` 是 ChromeDriver 的一个类,用于启动 Chrome 浏览器;
- `By` 是 Selenium 的一个常量类,提供了多种选择器方式(如 ID、class、name、tag 等);
- `csv` 模块是 Python 自带的用于读写 CSV 文件的模块;
- `os` 模块提供了许多与操作系统交互的接口;
- `time` 模块提供了时间相关的函数;
- `json` 模块用于处理 JSON 格式的数据;
- `django` 是一个流行的 Web 开发框架,在这里可能是用来连接数据库的;
- `pandas` 是一个处理表格数据的 Python 库,可能是用来处理 CSV 文件的。
from selenium import webdriver import time from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By from selenium.webdriver.common.action_chains import ActionChains # 读取操作excel表格 import openpyxl , 上述代码如何进行封装, 方便引用
可以将上述代码封装为一个函数,如下所示:
```
import openpyxl
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.common.action_chains import ActionChains
def login(username, password):
# 读取操作 excel 表格
wb = openpyxl.load_workbook('example.xlsx')
ws = wb.active
# 启动 Chrome 浏览器
service = Service('chromedriver')
driver = webdriver.Chrome(service=service)
driver.get('https://www.example.com/login')
# 输入用户名和密码
username_field = driver.find_element(By.ID, 'username')
password_field = driver.find_element(By.ID, 'password')
username_field.send_keys(username)
password_field.send_keys(password)
# 点击登录按钮
login_button = driver.find_element(By.ID, 'login-button')
ActionChains(driver).move_to_element(login_button).click().perform()
# 关闭浏览器并保存 excel 表格
driver.quit()
wb.save('example.xlsx')
```
然后在其他文件中可以直接引用该函数,如下所示:
```
from login import login
# 使用封装的 login 函数登录账号
login('your_username', 'your_password')
```
这样可以避免代码重复,也方便维护。
阅读全文