Frustration project: Automate data entry into PeopleSoft with Selenium
1–10 of 51 posts
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#2My biggest headache was in getting the right selectors for the various form fields - some services have shifting IDs and classes (ugh xpath)
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#3Ante up at your peril in this game :/)
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#4Next you can thread the sucker, so you could have 2-4 PS windows open and enter at a faster speed ;)
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#5It seems like "automating boring stuff using Selenium" should be a bigger category than it is - and use cases that can do it profitably are always fascinating.
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#6I don’t love that raw http connections are the universal API, but at least it’s a tool in our belts when these companies provide lackluster or zero proper interfaces.
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#7If I could learn the underlying api, I could write a tool that would never change. The ui changes much more frequently than the interface between client and server code. Besides, it would be much faster this way.
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#8I'm always interested in clever use cases for Selenium. It seems like "automating boring stuff using Selenium" should be a bigger category than it is - and use cases that can do it profitably are always fascinating.
1. Load excel sheet from X:\...
2. Login to Y
3. For each row navigate to ... then enter data
4. Submit, if there’s a validation error add it to and excel workbook
5. Email exception report to ...
Re: Frustration project: Automate data entry into PeopleSoft with Selenium
#9I use selenium similarly to drive a similarly awful interface known as costpoint. I would DEARLY love to know how to use the browser developer tools to figure out what is actually happening under the hood of websites without having to read every single Javascript module. The network tab shows you what is sent and received but it's not easy to figure out how those messages are created and parsed. It would be nice to l…