"(" was not closed Pylance any help pls?

Viewed 17

that's the line of the code where am getting the error

self.driver.find_element_by_xpath("//*[@id="loginForm"]/div/div[3]/button/div").click()

1 Answers

Please try this

self.driver.find_element_by_xpath("//*[@id='loginForm']/div/div[3]/button/div").click()
Related