Skip to content

Commit add7f3a

Browse files
authored
open plugin information (#52)
1 parent 87f649a commit add7f3a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/models/IDE/VisualStudioCode.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,11 @@ def refresh_configuration(self):
131131
# Click 'Refresh configurations' button
132132
self.wait_find_element(locator_type="image", locator="refresh_configurations.png")
133133
self.click_element(locator_type="image", locator="refresh_configurations.png")
134+
135+
def open_plugin_info(self, plugin):
136+
self.press_keys("ctrl", "shift", "x")
137+
self.type_text(f"migration toolkit for {plugin}")
138+
time.sleep(5)
139+
self.press_keys("tab")
140+
self.press_keys("down")
141+
self.press_keys("enter")

0 commit comments

Comments
 (0)