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 A Fork in the XPath

Magdalena Frankowska
Magdalena Frankowska
15,501 Points

Xpath not working + issues with adding invitees

My invitee names get squeezed into one card and some of the cards ale empty. Also, Shadd Anderson is still on the list.

Here is my code:

const selenium = require("selenium-webdriver");
require('chromedriver');

const url = 'http://port-80-4yp37phzmt.treehouse-app.com/';
const By = selenium.By;
const driver = new selenium.Builder()
                            .forBrowser("chrome")
                            .build();
driver.get(url);

const invitees = [
    'Gonzalo Torres del Fierro',
    'Shadd Anderson',
    'George Aparece',
    'Shadab Khan',
    'Joseph Michael Casey',
    'Jennifer Nordell',
    'Faisal Albinali',
    'Taron Foxworth',
    'David Riesz',
    'Maciej Torbus',
    'Martin Luckett',
    'Joel Bardsley',
    'Reuben Varzea',
    'Ken Alger',
    'Amrit Pandey',
    'Rafal Rudzinski',
    'Brian Lynch',
    'Lupe Camacho',
    'Luke Fiji',
    'Sean Christensen',
    'Philip Graf',
    'Mike Norman',
    'Michael Hulet',
    'Brent Suggs'
 ];

const locators = {
    inviteeForm: By.id('registrar'),
    inviteeNameField: By.css('#registrar input[name="name"]'),
    toggleNonRespondersVisibility: By.css('.main > div input'),
    removeButtonForInvitee: invitee => By.xpath(`//span[text() = "${invitee}"]/../button[2]`)
};

const addInvitee = (name) => {
    driver.findElement(locators.inviteeNameField)
    .sendKeys(name);
    driver.findElement(locators.inviteeForm).submit();
};

const removeInvitee = (invitee) => {
    driver.findElement(locators.removeButtonForInvitee(invitee))
        .click();
};

const toggleNonRespondersVisibility = () => {
    driver.findElement(locators.toggleNonRespondersVisibility)
        .click();
};

invitees.forEach(addInvitee);

removeInvitee('Shadd Anderson');