I'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
Hi!
Please, use the rest api instead of crawling
https://github.com/atlassian-api/atlassian-python-api/blob/master/CONTRIBUTING.rst
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.