Monday 20 January 2014

Web testing interview questions

Don't you know what kind of questions you'll might expect. This link can help you.

http://www.geekinterview.com/Interview-Questions/Testing/Web-Testing

1 comment:

  1. Hello Buddie,

    Hip Hip Hooray! I was always told that slightly slow in the head, a slow learner. Not anymore! It’s like you have my back. I can’t tell you how much I’ve learnt here and how easily! Thank you for blessing me with this effortlessly ingestible digestible content
    I am trying to download video from youtube from.... to

    But my attempt does not work
    Python Code: (Double-click to select all)
    1
    2
    3
    4
    5
    6
    7
    8 import pytube
    link = "https://www.youtube.com/watch?v=u_kgxHZeAoo"
    itag = 43
    url = pytube.YouTube(link).streams.get_by_itag(itag).url
    process_call_str = 'ffmpeg -ss {1} -to {2} -i "{0}"'\
    '-acodec aac -b:a 192k -avoid_negative_ts make_zero "{3}"'
    format(str(url), str("00:10:00.00"), str("00:10:56.00"), "C:\Users\Anton")
    status = subprocess.check_call(process_call_str, shell=True)

    I am so grateful for your blog. Really looking forward to read more.

    Many Thanks,
    Irene Hynes

    ReplyDelete