정상리턴값 확인

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

정상리턴값 확인

backnumber45
정상리턴값 확인 방법에 대해 문의 드리려고 합니다.

특정 홈페이지에 로그인 하는 업무의 경우를 예를 들면...

홈페이지에서 아이디/패스워드 입력후 로그인 버튼을 클릭하면, 서버에서 "welcome~"이라는 메세지가 출력되는 페이지를 리턴하는 경우 입니다.

레코더로 이 액션을 스크립트로 만들어서, 스크립트 수행시에 서버에서 "welcome~"이라는 TEXT를 포함하고 있는 페이지를  정상적으로 리턴이 하였는지 "welcome~" TEXT를 체크 하려고 합니다.

방법이 있다면 알려주시면 감사하겠습니다...

수고하세요~~
Reply | Threaded
Open this post in threaded view
|

Re: 정상리턴값 확인

YoungWoo Kim
저는 이렇게 쓰고 있어요~
phython에 string find 명령어 사용 하고 있습니다.

https://docs.python.org/2/library/string.html

string.find(s, sub[, start[, end]])
Return the lowest index in s where the substring sub is found such that sub is wholly contained in s[start:end]. Return -1 on failure. Defaults for start and end and interpretation of negative values is the same as for slices.

if result.getText().find("welcome~") != -1 :
    grinder.statistics.forLastTest.success = 1
else :
    err("ERROR is : %s " % result.getText())
    grinder.statistics.forLastTest.success = 0

그루비나 다른거 쓰심 거기에 string find쓰시면 될듯 해요~

Reply | Threaded
Open this post in threaded view
|

Re: 정상리턴값 확인

backnumber45
아 이런 방법이..ㅎㅎ
많은 도움이 되었습니다.
자세한 설명 감사합니다.