by doitwithcode | Dec 27, 2019 | Blog, Python
Google shows you a list of related keywords for your search term as you type ( example below ). These keywords are the most searched for on Google. You can use these keywords as inspiration for the next blog post or simply create a list of keywords related to a...
by doitwithcode | Dec 26, 2019 | Blog, Python
While working on a web automation project, I needed to hide an element since it is was blocking other elements preventing them from being clicked. The specific error I was getting is below: ElementClickInterceptedException: Message: element click intercepted: Element...
by doitwithcode | Dec 24, 2019 | Blog, Python
The subprocess Python module can be used to call external programs within Python. By external program, we’re referring to a command you can type within the Unix/Linux shell or command line for Windows. To list processes currently running on Linux, the ps aux...
by doitwithcode | Dec 21, 2019 | Blog, Python
Selenium is a very powerful browser automation tool. Let’s look at how we can perform a Google search using Selenium. The steps to do this manually are listed below: Open your browser Navigate to https://google.com Click the search form and type in your search...
by doitwithcode | Dec 20, 2019 | Blog, JavaScript
window.location.href for JavaScript can be used to redirect one page to another. For instance to redirect the current page we’re on to doitwithcode.com/javascript, simply use the code below window.location.href = “http://doitwithcode.com/javascript”...