Skip to content

Tag: selenium

Run Multiple Instances of ChromeDriver

Using selenium and python I have several tests that need to run in parallel. To avoid using the same browser I added the parameter of using a specific profile directory and user data (see below). The problem is that I cannot run them simultaneously, one test needs to wait for the other to finish. Otherwise I …

Passing cookies while logging in

I would like to integrate python Selenium and Requests modules to authenticate on a website. I am using the following code: The problem is that when I enter the browser the login authentication is still there when I try to access the url even though I passed the cookies generated from the requests session. Ho…

Scroll in Selenium Webdriver (Python)

Prerequisites. You need an account at Instagram to use this script. Setup a test environment: Log in, open the needed list(works correctly): Wrong scroll. How to fix this block? How to focus and scroll correctly on this page? My attempts: ============================================================= to @Moshi…