Hey all trust that you're well, I'm currently receiving a Code is unreachable, it seems to work when I remove mobile emulation, however I need mobile emulation
Code:
def test_instance(data, tgs):
Options = webdriver.ChromeOptions()
mobile_emulation = {"userAgent": "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 5 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/102.0.5005.63 Mobile Safari/535.19"}
Options.add_experimental_option("mobileEmulation", mobile_emulation)
Options.add_argument("--log-level=3")
#Options.add_argument("--headless")
#Options.add_argument("--remote-debugging-port=9222")
#Options.add_argument('--no-sandbox')
Error:
Code is unreachablePylance