How to login a forum using Selenium with Python

0 votes

I’m trying to use Selenium and PhantomJS for headless browsing to login a forum.Below is the code I used using Firefox and then change it to PhantomJS

driver = webdriver.PhantomJS()

base_url = "http://6atxfootball.vbulletin.net/"

verificationErrors = []

accept_next_alert = True

driver.get(base_url)

driver.find_element_by_id("lnkLoginSignupMenu").click()

driver.find_element_by_id("idLoginUserName").clear()

driver.find_element_by_id("idLoginUserName").send_keys("USERNAME_HERE")

driver.find_element_by_id("idLoginPassword").clear()

driver.find_element_by_id("idLoginPassword").send_keys("PASSWORD_HERE ")

driver.find_element_by_id("idLoginBtn").click()

It shows an error is “NoSuchElementException:”.

driver.find_element_by_id("idLoginUserName").clear()

does this mean there’s no such an element when it’s opened by PhantomJS()?

I also tried to save the content also by PhantomJS() as a file and see what’s happening:

driver = webdriver.PhantomJS()

base_url = "http://6atxfootball.vbulletin.net/"

verificationErrors = []

accept_next_alert = True

driver.get(base_url)

content=driver.page_source

cleaner=clean.Cleaner()

content=cleaner.clean_html(content)    

with open('6atxfootball.html','w') as f:

   f.write(content.encode('utf-8'))

   doc=LH.fromstring(content)

the “6atxfootball.html” shows there isn’t any form to fill.

Apr 27, 2018 in Selenium by Martin
• 4,320 points
2,378 views

1 answer to this question.

0 votes

You should try to directly log in to the url of the iframe, that is http://6atxfootball.vbulletin.net/auth/login-form. I think it's because it's inside an iframe. It would not be surprising that PhantomJS have some difficulties to find your element.

answered Apr 27, 2018 by Samarpit
• 5,910 points

Related Questions In Selenium

0 votes
1 answer

How to Select date from a datepicker with Selenium Webdriver using Python?

Hi Yashim, you can select date from ...READ MORE

answered Jul 31, 2019 in Selenium by Abha
• 28,140 points

edited Oct 7, 2021 by Sarfaraz 10,513 views
0 votes
1 answer
0 votes
2 answers
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,711 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,608 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,680 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,551 views
0 votes
1 answer

How to click a span with given text using Selenium Python

If ALL_USA is subject to change, then ...READ MORE

answered Jul 26, 2018 in Selenium by Samarpit
• 5,910 points
6,907 views
0 votes
2 answers

How to open a browser window in full screen using Selenium WebDriver with C#

Hi , we have inbuilt method Maximize(). driver.Manage().Wind ...READ MORE

answered Sep 6, 2020 in Selenium by Sri
• 3,190 points
15,578 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP