Webdriver to update project and board config

Reg Hawkins January 31, 2018

Board config.PNGI'm trying to automate the populating of new boards.

<h3 class="ghx-header-name ghx-editable js-editable-field js-edit-name-trigger" tabindex="0" data-fieldname="name" data-fieldvalue="New Column" title="New Column">New Column</h3>

Using python webdriver I can get the new column to appear but then 

driver.find_element_by_id("ghx-config-addcolumn").click()
The below 4 lines is what i'm trying to do
driver
.find_element_by_name("name").click()
driver.find_element_by_name("name").clear()
driver.find_element_by_name("name").send_keys("Quick Review")
driver.find_element_by_id("name").send_keys(Keys.ENTER) 

 I created this using selenium IDE and when run in the IDE the steps work

1 answer

0 votes
Gonchik Tsymzhitov
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 28, 2021

Suggest an answer

Log in or Sign up to answer