Scraping Website Data and Automating Jira Operations

Problem Description

I am dealing with a task that requires monitoring a ticketing system for specific incidents. The process should:

  • Scan the support tool for incidents containing a designated phrase.
  • Upon detection, navigate to a Jira page to generate a new subtask.
  • Immediately close this subtask once created.
  • Return to the ticketing system, update the incident status via a dropdown selection, and append a fixed resolution note.

Which libraries or modules are best suited to implement this workflow?

hey u could try using selenium for the browser part and mix it with beutifulsoup or requests to scrap data. also check jira rest api to skip some steps. works fine for my case, might tweak for yours