Python Forum
How can get url from JavaScript in Selenium (Python 3)?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can get url from JavaScript in Selenium (Python 3)?
#4
(Feb-03-2019, 07:33 PM)snippsat Wrote: Your functions setup in is wrong,just drop functions for now,if you unsure how they work.
It's a really messy site to deal with,so not the easiest to start with if new to this.

To show a way to get values from first line,it can also easier to send browser.page_source to BS for parsing.

Hi. I wrote the code on the pure lxml and it works faster than yours.

Yes. It's a really messy site to deal with,so not the easiest to start with if new to this, many pitfalls, but then others will be easy.

page = browser.page_source
time.sleep(3)

doc = lxml.html.fromstring(page)
row = doc.cssselect("tr.lo")[0]
print(row.text_content().strip())
Reply


Messages In This Thread
RE: How can get url from JavaScript in Selenium (Python 3)? - by m0ntecr1st0 - Feb-19-2019, 12:35 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using Python request without selenium on html form with javascript onclick submit but eraosa 0 3,195 Jan-09-2021, 06:08 PM
Last Post: eraosa
  question about using javascript on python selenium Kai 1 1,908 Apr-12-2020, 04:28 AM
Last Post: Larz60+
  Scrapping javascript website with Selenium where pages randomly fail to load JuanJuan 14 7,254 Dec-27-2019, 12:32 PM
Last Post: JuanJuan
  Unable to access javaScript generated data with selenium and headless FireFox. pjn4 0 2,557 Aug-04-2019, 11:10 AM
Last Post: pjn4
  Python - Scrapy Javascript Pagination (next_page) Baggelhsk95 3 10,019 Oct-08-2018, 01:20 PM
Last Post: stranac
  scraping javascript websites with selenium DoctorEvil 1 3,388 Jun-08-2018, 06:40 PM
Last Post: DoctorEvil
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 3,649 Nov-03-2017, 08:41 PM
Last Post: metulburr
  Python wsgi example: problem with javascript imonike 12 10,037 Jun-19-2017, 03:27 PM
Last Post: imonike
  selenium bypass javascript popup box metulburr 6 8,461 Jun-02-2017, 07:15 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020