Skip to content

Commit 252360f

Browse files
all_Automation_Git_Actions
1 parent 577232e commit 252360f

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

allAutomation/.idea/workspace.xml

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

allAutomation/my_project/tests/BrowserManager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def setup():
1010
# Initialize ChromeOptions
1111
chrome_options = ChromeOptions()
12-
# chrome_options.add_argument('--headless') # Uncomment to run Chrome in headless mode?
12+
chrome_options.add_argument('--headless') # Uncomment to run Chrome in headless mode?
1313
chrome_options.add_argument('--no-sandbox') # Bypass OS security model
1414
chrome_options.add_argument('--disable-dev-shm-usage') # Overcome limited resource problems
1515

@@ -32,7 +32,7 @@ def setup():
3232
yield driver
3333

3434
# Teardown - Close the browser
35-
# driver.quit()
35+
driver.quit()
3636

3737

3838
def test_open_website(setup):

0 commit comments

Comments
 (0)