Skip to content

Commit

Permalink
made the open_plugin_info fit to open mta and mtr plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
midays committed Oct 4, 2023
1 parent 2cf3516 commit dc5b020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/IDE/Intellij.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ def cancel_analysis(self):
self.click_element(locator_type="image", locator="cancel_analysis.png")
self.click()

def open_mta_plugin_info(self):
def open_plugin_info(self, plugin_name):
self.press_keys("ctrl", "alt", "s")
self.press_keys("ctrl", "f")
self.type_text("plugins")
self.press_keys("enter")
self.type_text("Migration Toolkit for Runtimes")
self.type_text(f"Migration Toolkit for {plugin_name}")
self.press_keys("enter")

0 comments on commit dc5b020

Please sign in to comment.