mirror of
https://github.com/status-im/status-react.git
synced 2025-01-25 02:09:06 +00:00
011a7e2218
Signed-off-by: yevh-berdnyk <ie.berdnyk@gmail.com>
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
|