Hi, here is my code
try:
open("netflix", throw_error=True)
except AppNotFound as e:
wb.open_new_tab('https://www.netflix.com/tw/')
I think, when netflix app is not open, it will raise some exception like AppNotFound, but it didn't work,
if I write the wrong code to use this function, please show me the right way, thanks.
Hi, here is my code try: open("netflix", throw_error=True) except AppNotFound as e: wb.open_new_tab('https://www.netflix.com/tw/')
I think, when netflix app is not open, it will raise some exception like AppNotFound, but it didn't work, if I write the wrong code to use this function, please show me the right way, thanks.