browser-automation

Automated login and password storage

Hello, I wrote a simple PHP script to log into my mobile phone provider's website, check my balance, and send me an email if it's too low. I put the script on a distant server. It seems that I have to store my password as plaintext in the script to be able to send it to the login page. However, I am a little bit reluctant to do this......

Selenium with Python, how do I get the page output after running a script?

I'm not sure how to find this information, I have found a few tutorials so far about using Python with selenium but none have so much as touched on this.. I am able to run some basic test scripts through python that automate selenium but it just shows the browser window for a few seconds and then closes it.. I need to get the browser out...

TWebBrowser - Hook receive event

Hello, I am trying to automatically submit a form, and save the resulting image that gets shown in the TWebBrowser object. The image gets loaded over several chained javascript requests (ajax), until it finally appears in the document. What is the best way to get this image? I thought of hooking the receive function to be able to see t...

How to find out which JavaScript events fired?

I have a select list: <select id="filter"> <option value="Open" selected="selected">Open</option> <option value="Closed">Closed</option> </select> When I select Closed the page reloads. In this case it shows closed tickets (instead of opened). It works fine when I do it manually. The problem is that the page does not reload when ...

How do I automate Chrome using WatiN?

I've done countless Google searches on this. Despite all the promises, I simply can't find one straight-forward peice of documentation on how to automate Chrome with WatiN. Can anyone help? ...

How Do You Set Value of Input Element Programmatically Through CSharp?

Hello I am trying to automate my IE to log into a website but the problem is that the input elements do not have an HTML ID attribute! For example: <input type="text" name="user" size="15" value=""> How do you program C# to insert text in this text box? Thanks ...