I would like to do the following. Log into a website, click a couple of specific links, then click a download link. I'd like to run this as either a scheduled task on windows or cron job on Linux. I'm not picky about the language I use, but I'd like this to run with out putting a browser window up on the screen if possible.
相关问题
- How to use VBA or Powershell to export lists from
- How to trigger a click on a chrome extension butto
- driver.quit() does not close browser windows
- Automation support for Visual Basic 6 ListView
- Azure Key Vault access from ARM Template
相关文章
- Reading data from Excel in Haskell
- Toad: 10.6: Seek clear instructions on automating
- Need to mock google OAuth2 service
- Python | PhantomJS not clicking on element
- How to compare two images in Robot Framework
- Automate Connect-AzureAD using powershell in Azure
- How can I test performance of my web app at differ
- Automation testing tool for Regression testing of
PhantomJS is a headless WebKit-based browser that you can script with JavaScript.
Have a look at PhantomJS, a JavaScript based automation framework available for Windows, Mac OS X, Linux, other *ix systems.
Using PhantomJS, you can do things like this:
Or evaluate a page's title:
Examples from PhantomJS' Quickstart page. You can even render a page to a PNG, JPEG or PDF using the render() method.