We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87f649a commit add7f3aCopy full SHA for add7f3a
src/models/IDE/VisualStudioCode.py
@@ -131,3 +131,11 @@ def refresh_configuration(self):
131
# Click 'Refresh configurations' button
132
self.wait_find_element(locator_type="image", locator="refresh_configurations.png")
133
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