Selenium Webdriverでは、PycharmでPythonで作業しています。ここでは、ChromeとSafariでそれぞれURLを開くために2つのメソッドが呼び出される単純なクラスを使用しています。"python setup.py egg_infoがエラーコード1で失敗しました"
今それを実行した後、私はこのようなエラーを取得していますfrom selenium import webdriver
class Automation():
def Safari(self):
driver = webdriver.Safari()
driver.get('https://bizplace.theentertainerme.com')
def Chrome(self):
driver = webdriver.Chrome('/usr/local/bin/chromedriver')
driver.get('https://bizplace.theentertainerme.com')
auto = Automation
auto.Safari(self)
:
auto.Safari(self)
NameError: name 'self' is not defined
私はそのは私にこのようなエラーを投げ、コマンドラインを介して自己パッケージをインストールしようとしています:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/hh/bwg2n8w54cd7852cx91v21qm0000gp/T/pip-build-XVmlLB/public/setup.py", line 28, in <module>
setup_cfg_data = read_configuration(path)
File "/private/var/folders/hh/bwg2n8w54cd7852cx91v21qm0000gp/T/pip-build-XVmlLB/public/setup.py", line 23, in read_configuration
val = open(val).read()
IOError: [Errno 2] No such file or directory: './README.rst'
ここで私を助けることができますか?