Yam
Yam

Reputation: 11

Capture HTTP Requests using robotframework

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.

Upvotes: 0

Views: 1594

Answers (1)

Vimal
Vimal

Reputation: 21

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.

Upvotes: 1

Related Questions