简体   繁体   中英

The exact way to execute javascript console.log useing selenium in python

What I've tried:

driver.execute_script("console.log('help me to see console print')")

But No any result.

You have got it!

driver.get("https://www.google.com")
driver.execute_script(f"console.log('{driver.current_url}');")

在此处输入图像描述

After execution javascript, need sometime to load it into browser dom.
So I added some time sleep under that code line.

driver.execute_script("console.log('help me to see console print')")
time.sleep(10)

Now it was printed:

help me to see console print

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM