我无法识别简历标签并上传简历

时间:2018-05-09 10:41:49

标签: python selenium

我无法识别简历标签并上传此标签的简历



<label for="rh_resume_upload_file" style="outline: blue dashed 2px;" class=""> </label>
&#13;
&#13;
&#13; 网址:https://www.roberthalf.com/job/toms-river-nj/marketing-assistant/02760-9501226436/apply?referUrl=aHR0cHM6Ly93d3cucm9iZXJ0aGFsZi5jb20vam9icy9RQQ==

由于

1 个答案:

答案 0 :(得分:2)

您应该使用<input>代码而不是<label>来上传文件。

试试这个:

首先,您需要单击该标签以启用文件浏览选项:

driver.find_element_by_id('file-link').click()

然后使用sendkeys上传文件:

file_element = driver.find_element_by_id('rh_resume_upload_file')
file_element.send_keys( "your file path here" )