赞
踩
文件上传是web页面上很常见的一个功能,用脚本去实现文件上传很简单。
一般场景:在页面中的上传按钮是一个标签,其中type属性为type="file",这种可以用selenium提供的send_keys()方法轻松解决。
type="file"
send_keys()
页面代码片段:
<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> </head> <body> <fieldset> <legend>文件上传</legend> <form action=""> <input type="file" name="upfile" value=""> </form> </fiel