In order to avoid dual verification with a phone every time we log in, we'll need to use the Facebook/Google login. The Google login flow requires a lot more steps than Facebook login, so we'll go with Facebook in this challenge.

1. Using Selenium and Python Navigate to the Tinder website (https://tinder.com/) and click on LOG IN then LOGIN WITH FACEBOOK. See below:

If successful, you should see a pop-up for Facebook login:

HINT 1: Make sure you've already manually signed-in and verified your phone number with Tinder as we can't automate the phone number verification. You only have to do this once.

HINT 2: If you are getting a NoSuchElementException, make sure you've added some delay between clicking on buttons so that the new element has enough time to load.

HINT 3: You might find it easier to right click on the element and get the XPath to use with Selenium. e.g.



SOLUTION