Skip to content
Advertisement

Tag: selenium-chromedriver

how to verify tag of web element after it has been extracted using xpath

I am using selenium in python with chrome driver. Here is my scenario: From a web page I extract all elements having id==customer_info or class==prize_info using the following code: Now I want to go through each element of the list ‘customer_or_prize_list’ and process as follows if web element contains id==customer_info then do multi_line_text_formatting (assume it as action 1) if web

ChromeDriver ERR_SSL_PROTOCOL_ERROR despite –ignore-certificate-errors

I’m trying to run integration tests on a local host (with no HTTPS) using selenium with ChromeDriver. Chrome requires an https certificate, but from this question i understand that i can circumvent this using the arg –ignore-certificate-errors I have also added to my capabilities acceptInsecureCerts, as this seems like the appropriate course of action (docs) The response from the chromedriver

Selenium: WebDriverException:Chrome failed to start: crashed as google-chrome is no longer running so ChromeDriver is assuming that Chrome has crashed

Recently I switched computers and since then I can’t launch chrome with selenium. I’ve also tried Firefox but the browser instance just doesn’t launch. i get the following error: i have the latest chrome version and chromedriver installed EDIT: After trying @b0sss solution i am getting the following error. Answer Try to download HERE and use this latest chrome driver

Advertisement