Issue
options = webdriver.ChromeOptions()
options.add_experimental_option("detach", True)
browser = webdriver.Chrome(ChromeDriverManager().install(), options=options)
I found out that after this line it doesn't run anymore (code works in .py file so I think I imported everything) Solutions?
Solution
You cannot import Selenium code into a browser application!!!!
Answered By - Neytiri
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.