From the course: Cucumber Essential Training

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Invoke a page: Supply values

Invoke a page: Supply values - Cucumber Tutorial

From the course: Cucumber Essential Training

Invoke a page: Supply values

- [Instructor] We are continuing from our web browser-based test automation process. So we got three instances of the Chrome browser. Why did we get three? This is because we had three rows in the scenario outline table, which is called examples. So we have our web automation working. Let's take a moment to inspect this page to see if we can read data from each of these elements. So I'm just going to move this up. Click inspect. And if we look at the HTML elements, I got a form with a table with some data here, and I'm just going to expand on this one. There are some table rows here, and if you highlight any of these, you will see what element it's referring to. Within the table, we have the bill amount label and we also have an input, which is called id_billamount. Note that this id_billamount, I'll make it a little bit bigger. It's called id_billamount, and you can view this on the left-hand side as well. This is the web element that we need to extract information from, and each of…

Contents