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 c3a20f4 commit f27f230Copy full SHA for f27f230
tests/test_cell_data_type_override.py
@@ -16,7 +16,8 @@
16
def test_cd001_cell_data_types_override(dash_duo):
17
os.environ['LANGUAGE'] = 'en-US'
18
chrome_options = Options()
19
- driver = webdriver.Chrome(options=chrome_options) # run this test with a Chrome driver to control the locale
+ chrome_options.add_argument("--headless")
20
+ driver = webdriver.Chrome(options=chrome_options) # run this test with a Chrome driver to control the locale via the environment variable set above
21
22
app = Dash(__name__)
23
0 commit comments