I\'ve got an issue with browser.execute_script while using selenium with python. There is an element that i\'d like to click (it\'s xpath below)
\"//*[@id=\'lis
Instead of
browser.execute_script(navMenu.click())
try
browser.execute_script('arguments[0].click();', navMenu)
or
navMenu.click()