mirror of
https://github.com/status-im/status-react.git
synced 2025-02-06 16:14:52 +00:00
12 lines
284 B
Python
12 lines
284 B
Python
|
from selenium.common.exceptions import WebDriverException
|
||
|
|
||
|
from tests import info
|
||
|
|
||
|
|
||
|
def start_web_browser(driver):
|
||
|
info('Start web browser')
|
||
|
try:
|
||
|
driver.start_activity('org.chromium.webview_shell', 'WebViewBrowserActivity')
|
||
|
except WebDriverException:
|
||
|
pass
|