diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index aca0929..040ae0b 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,7 +4,10 @@
-
+
+
+
+
@@ -68,13 +71,14 @@
"Python.executor_one_file.executor": "Run",
"Python.screen_test.executor": "Run",
"Python.screenshot_test.executor": "Run",
+ "Python.video_recording.executor": "Run",
"RunOnceActivity.OpenProjectViewOnStart": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.git.unshallow": "true",
"WebServerToolWindowFactoryState": "false",
"git-widget-placeholder": "dev",
"ignore.virus.scanning.warn.message": "true",
- "last_opened_file_path": "C:/CodeWorkspace/Python/AutoControlGUI",
+ "last_opened_file_path": "C:/CodeWorkspace/Python/NovelAI_RPA",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
@@ -101,7 +105,7 @@
-
+
@@ -110,12 +114,12 @@
-
+
-
+
@@ -124,7 +128,7 @@
-
+
@@ -133,12 +137,12 @@
-
+
-
+
@@ -147,7 +151,7 @@
-
+
@@ -156,12 +160,12 @@
-
+
-
+
@@ -170,7 +174,7 @@
-
+
@@ -179,12 +183,12 @@
-
+
-
+
@@ -219,10 +223,10 @@
+
-
@@ -543,6 +547,11 @@
+
+
+
+
+
@@ -566,10 +575,11 @@
+
-
-
+
+
diff --git a/test/unit_test/use_this_as_rpa_test/rpa_open_test.py b/test/unit_test/use_this_as_rpa_test/rpa_open_test.py
new file mode 100644
index 0000000..799e63f
--- /dev/null
+++ b/test/unit_test/use_this_as_rpa_test/rpa_open_test.py
@@ -0,0 +1,13 @@
+import subprocess
+import time
+
+from je_auto_control import screenshot
+
+subprocess.Popen("notepad.exe", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, shell=True)
+
+time.sleep(10)
+
+# screenshot and save
+image = screenshot("test.png")
+assert (image is not None)
+print(image)
\ No newline at end of file