我希望自动化一个工作流程,这个步骤需要我去网站,将数据下载到csv格式,然后完成工作并发送电子邮件。我已经编写了一组宏来完成大部分工作,但是,在导航到网站后我无法理解如何下载数据(我看到一些教程,其中给定的网站已经是excel格式)。基本上,您导航到网站,单击下拉菜单,然后选择导出选项。
我目前有以下脚本,它让我到了正确的页面。但是,当我到达此页面时,我需要单击“导出”按钮,然后单击“.csv”格式按钮。有没有人有我可以看到的任何建议,解决方案或教程?
'method to open chrome, collect Jira report and download it to folder
Sub getJiraReport()
Dim chromePath As String
chromePath = """C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"""
'loads the Jira Page with report
Shell (chromePath & " -url https://companyname.atlassian.net/issues/? filter=10600")
End Sub