Web-scraping with Julia

Is there any way to scrape data from login required websites with Julia?

I’ve used Gumbo and Cascadia so far for non-login websites but i can’t seem to find any solution for websites that require login.

If the sites require basic auth, you might be able to fake the cookie in you request with Gumbo. Otherwise, you might need to use PythonCall to use the Selenium package in Python.