Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » Eclipse with PyDev Console not updating(Import Selenium and Console doesn't update unless I click it)
Eclipse with PyDev Console not updating [message #1843086] Wed, 14 July 2021 23:49
Geoff Loosemore is currently offline Geoff LoosemoreFriend
Messages: 1
Registered: July 2021
Junior Member
I just installed Eclipse yesterday and can't figure this out. I'm using Python in Eclipse and have this simple program, which should log stuff to the console:

test_int = 0
for i in range(0, 10000):
    test_int += 1

print(str(test_int))
y = input("WTF?")


Which works fine. The problem is when I try to import Selenium and change the code to this

from selenium import webdriver

test_int = 0
for i in range(0, 10000):
    test_int += 1

print(str(test_int))
y = input("WTF?")


Now when I run the same program, the console in Eclipse won't display the input until I click somewhere in the coding window after the program has started running. Then the console updates instantly.

I've attached a screenshot after the program has been running 10 seconds, and you can see the console hasnt updated. The second screenshot is after I click on the coding window, and the console updates.

Thanks for your help in fixing this.
  • Attachment: ecl1.png
    (Size: 102.94KB, Downloaded 66 times)
  • Attachment: ecl2.png
    (Size: 76.04KB, Downloaded 62 times)
Previous Topic:Getting compliance error while trying to export feature project from my eclipse rcp workspace
Next Topic:Encoding issue
Goto Forum:
  


Current Time: Tue Apr 16 10:41:05 GMT 2024

Powered by FUDForum. Page generated in 1.84490 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top