diff --git a/repository/Parasol-Core.package/BPWindow.class/instance/fullscreen.st b/repository/Parasol-Core.package/BPWindow.class/instance/fullscreen.st new file mode 100644 index 0000000..7c66e01 --- /dev/null +++ b/repository/Parasol-Core.package/BPWindow.class/instance/fullscreen.st @@ -0,0 +1,11 @@ +misc +fullscreen + " + https://www.selenium.dev/selenium/docs/api/java/org/openqa/selenium/WebDriver.Window.html#fullscreen + " + + driver handleResponse: (driver + httpPost: (self baseURL , 'fullscreen') + jsonData: (Dictionary new + )) + onSuccess: [ :result | ] \ No newline at end of file diff --git a/repository/Parasol-Core.package/BPWindow.class/instance/maximize.st b/repository/Parasol-Core.package/BPWindow.class/instance/maximize.st new file mode 100644 index 0000000..ac4738c --- /dev/null +++ b/repository/Parasol-Core.package/BPWindow.class/instance/maximize.st @@ -0,0 +1,11 @@ +misc +maximize + " + https://www.selenium.dev/selenium/docs/api/java/org/openqa/selenium/WebDriver.Window.html#maximize + " + + driver handleResponse: (driver + httpPost: (self baseURL , 'maximize') + jsonData: (Dictionary new + )) + onSuccess: [ :result | ] \ No newline at end of file diff --git a/repository/Parasol-Core.package/BPWindow.class/instance/minimize.st b/repository/Parasol-Core.package/BPWindow.class/instance/minimize.st new file mode 100644 index 0000000..985c5d2 --- /dev/null +++ b/repository/Parasol-Core.package/BPWindow.class/instance/minimize.st @@ -0,0 +1,11 @@ +misc +minimize + " + https://www.selenium.dev/selenium/docs/api/java/org/openqa/selenium/WebDriver.Window.html#minimize + " + + driver handleResponse: (driver + httpPost: (self baseURL , 'minimize') + jsonData: (Dictionary new + )) + onSuccess: [ :result | ] \ No newline at end of file