Capture HTTP Requests using robotframework

1.4k views Asked by At

I am trying the automate the HTTP Requests like Google Analytics tracking made by an input url using robot framework.

I found that capture webdriver with browser mob proxy may be helpful but I am not sure on the exact steps to be followed.

Can anyone please advise on where to start to reach my goal.

Thanks in Advance, Yams.

1

There are 1 answers

3
Vimal On

I did it by creating my own keyword.

Select Radio Button Otherwise    CSS_ID   True

This will select all radio buttons with value other than True.

This is my final code

Run My Test
    Select Radio Button    CSS_ID   True
    Correct window should popup 
    Select Radio Button Otherwise    CSS_ID   True  
    InCorrect window should popup

Check Run Keyword If and Run Keyword Unless keywords from the documentation.