jeanphix/Ghost.py

Got an unexpected keyword argument 'wait_timeout'

Closed this issue · 1 comments

When I try to define the wait_timeout in Ghost constructor it gives me the below error.

Traceback (most recent call last):
File "C:\Anaconda3\lib\site-packages\ghost\ghost.py", line 325, in del
self.exit()
File "C:\Anaconda3\lib\site-packages\ghost\ghost.py", line 315, in exit
self._app.quit()
AttributeError: 'NoneType' object has no attribute 'quit'
Traceback (most recent call last):
File "testGhost.py", line 2, in
ghost = Ghost(wait_timeout=30)
TypeError: init() got an unexpected keyword argument 'wait_timeout'

My program is:

`from ghost import Ghost
ghost = Ghost(wait_timeout=30)

with ghost.start() as session:
page, extra_resources = session.open("https://github.com")
print ("Page Loaded")`

I tried a different approach and it worked. Below is the code.

from ghost import Ghost, Session

ghost = Ghost()
session = Session(ghost)
session.wait_timeout=25

#Open Webpage
ghost.open("http://girhub.com")
print ("page Loaded")