Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Quality Assurance Introduction to Selenium Automation Nation Getting Started

How does process.env.URL work inside of index.js for Selenium WebDriver?

There is an error if you add URL variable to the code. What is this process.env.URL and how does it work?

WebDriverError: unknown error: 'url' must be a string

const selenium = require("selenium-webdriver");
const By = selenium.By;
var URL = 'file:///C:SeleniumTeamTreeHouse/project/index.html';

const driver = new selenium.Builder()
    .forBrowser("chrome")
    .build();

driver.get(process.env.URL);

Side Note. Above code will run without an issue with following code:

driver.get(URL);

2 Answers

Stewart Haynes
PLUS
Stewart Haynes
Courses Plus Student 898 Points

If using Windows, use:

set URL=url_of_your_workspace

node index.js

Craig Dennis
STAFF
Craig Dennis
Treehouse Teacher

process.env.URL is using an environment variable that is set using URL=... from the command line. Since you are doing it locally, you can just use that variable URL that you created.

Hope that helps!