We get free Dedicated Server (RDP) from Repl.it

Mutt

Professional
Messages
1,057
Reputation
7
Reaction score
593
Points
113
So, straight to the point.

The essence

1. Follow the link and register an account;

2. Create a new PYTHON project and paste this code there:
Code:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options ()
chrome_options.add_argument ('- no-sandbox')
chrome_options.add_argument ('- disable-dev-shm-usage')

driver = webdriver.Chrome (options = chrome_options)
driver.get ("https://google.com")

92adaa8cfc51721cf0059.png


3. Next, click on RUN, and our Dedicated Server is launched;
76459206e1f2a6a8c3690.png

432d597ac15e794119fad.png


SpeedTest
796437e611c70a4a29443.png


So simple!
 

Reaven01

Member
Messages
1
Reputation
0
Reaction score
0
Points
1
Traceback (most recent call last):
File "main.py", line 8, in <module>
driver = webdriver.Chrome (options = chrome_options)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/selenium/webdriver/chrome/webdriver.py", line 76, in __init__
RemoteWebDriver.__init__(
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__
self.start_session(capabilities, browser_profile)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: crashed.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/chromium-browser is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
 

BigBeast

Professional
Messages
599
Reputation
16
Reaction score
429
Points
63
So i
just need to copy/paste the code & everything is done?
I use Firefox for carding,so i need to paste the code on firefox only or in any browser ?
 
Last edited by a moderator:
Top